deluged command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
deluged: command not found
or when using sudo you get the following error message
sudo: deluged: command not found
Solutions to deluged: command not found
How To Fix deluged: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu deluged is provided by deluged package.
deluged is:
Deluge is a full-featured, multi-platform, multi-interface BitTorrent client using libtorrent-rasterbar in it’s backend and featuring multiple user-interfaces: GTK+, web and console.
It has been designed using the client-server model with a daemon process that handles all the bittorrent activity. The Deluge daemon is able to run on headless machines with the user-interfaces being able to connect remotely from any platform.
You may want to install this package to run the daemon application on a remote server and connect to it from any user-interface. See: URL:http://dev.deluge-torrent.org/wiki/UserGuide/ThinClient
To fix this problem, we can install more using the command below.
sudo apt-get -y install deluged
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install deluged.
sudo apt -y install deluged
Or if you have aptitude installed you can use the following command.
sudo aptitude install deluged
Summary
In this tutorial we learn how to fix deluged command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.