audtty command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
audtty: command not found
or when using sudo you get the following error message
sudo: audtty: command not found
Solutions to audtty: command not found
How To Fix audtty: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu audtty is provided by audtty package.
audtty is:
Audtty is an ncurses based terminal frontend to the Audacious Media Player. It is a fork of xmms-curses and is designed to be lightweight and intuitive to use.
Audtty makes it easy to control the Audacious Media Player from the command line whether locally or remotely.
To fix this problem, we can install more using the command below.
sudo apt-get -y install audtty
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install audtty.
sudo apt -y install audtty
Or if you have aptitude installed you can use the following command.
sudo aptitude install audtty
Summary
In this tutorial we learn how to fix audtty command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.