record command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
record: command not found
or when using sudo you get the following error message
sudo: record: command not found
Solutions to record: command not found
How To Fix record: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu record is provided by xawtv-tools package.
xawtv-tools is:
XawTV is a set of software for watching and recording television channels and webcams.
This package provides some tools that may be useful with xawtv:
- propwatch: monitors properties of X11 windows. Helps to keep track of xawtv’s _XAWTV_STATION property;
- dump-mixers: dumps mixer settings to stdout;
- record: console sound recorder. It has a simple input level meter which might be useful for troubleshooting sound problems;
- showriff: display the structure of RIFF files (avi, wav).
To fix this problem, we can install more using the command below.
sudo apt-get -y install xawtv-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xawtv-tools.
sudo apt -y install xawtv-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install xawtv-tools
Summary
In this tutorial we learn how to fix record command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.