Forrest logo
back to the deluged tool

deluged:tldr:93099

deluged: Start the Deluge daemon on a specific port.
$ deluged -p ${port}
try on your machine

The command "deluged -p ${port}" is used to start the deluged daemon with specified port number.

Here is the breakdown of the command:

  • "deluged" is the name of the command which is used to start the deluged daemon.
  • "-p" is an option or flag that is used to specify the port number for the daemon.
  • "${port}" is a placeholder for the actual port number that you want to use. You need to replace "${port}" with the desired port number, for example, "deluged -p 8112" will start the daemon on port 8112.

In summary, this command starts the deluged daemon with the specified port number, allowing you to communicate with the deluged daemon on the specified port for various client-server interactions with the deluge software.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the deluged tool