btsco command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
btsco: command not found
or when using sudo you get the following error message
sudo: btsco: command not found
Solutions to btsco: command not found
How To Fix btsco: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu btsco is provided by bluez-btsco package.
bluez-btsco is:
A tool to that provides a way to use a bluetooth headset with Linux. It works well enough now to get voice-quality audio to and from most headsets
To fix this problem, we can install more using the command below.
sudo apt-get -y install bluez-btsco
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install bluez-btsco.
sudo apt -y install bluez-btsco
Or if you have aptitude installed you can use the following command.
sudo aptitude install bluez-btsco
Summary
In this tutorial we learn how to fix btsco command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.