btcli command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
btcli: command not found
or when using sudo you get the following error message
sudo: btcli: command not found
Solutions to btcli: command not found
How To Fix btcli: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu btcli is provided by btpd package.
btpd is:
btpd is a daemon based bittorrent client. The daemon state can be read or changed with appropriate commands. The daemon is capable of running several torrents simultaneously and only uses one tcp port, it’s fairly low on resource usage and should be perfect for file distribution sites.
Efficient downloads and ease of use make this client a good choice for the casual user as well.
To fix this problem, we can install more using the command below.
sudo apt-get -y install btpd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install btpd.
sudo apt -y install btpd
Or if you have aptitude installed you can use the following command.
sudo aptitude install btpd
Summary
In this tutorial we learn how to fix btcli command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.