Difference between revisions of "Transmission"
(→Running on a server: transmission-daemon man page) |
(→Running on a server: intro) |
||
Line 11: | Line 11: | ||
== Running on a server == | == Running on a server == | ||
+ | [http://trac.transmissionbt.com/wiki/man/transmission-daemon transmission-daemon] is a daemon-based ''Transmission'' session that can be controlled via RPC commands from transmission's web interface or [http://trac.transmissionbt.com/wiki/man/transmission-remote transmission-remote]. ''transmission-remote'' is a remote control utility for ''Transmission'' and ''transmission-daemon''. By default, ''transmission-remote'' connects to the ''Transmission'' session at '''localhost:9091'''. Other sessions can be controlled by specifying a different host and/or port. | ||
*[http://trac.transmissionbt.com/wiki/HeadlessUsage/General HeadlessUsage/General] | *[http://trac.transmissionbt.com/wiki/HeadlessUsage/General HeadlessUsage/General] | ||
*[http://trac.transmissionbt.com/wiki/HeadlessUsage HeadlessUsage] | *[http://trac.transmissionbt.com/wiki/HeadlessUsage HeadlessUsage] | ||
*[http://trac.transmissionbt.com/wiki/man/transmission-daemon transmission-daemon man page] | *[http://trac.transmissionbt.com/wiki/man/transmission-daemon transmission-daemon man page] | ||
+ | *[http://trac.transmissionbt.com/wiki/man/transmission-remote transmission-remote man page] | ||
== See also == | == See also == | ||
*[http://www.transmissionbt.com Official website] | *[http://www.transmissionbt.com Official website] | ||
[[Category:Software]] | [[Category:Software]] |
Revision as of 07:08, 17 January 2009
Transmission is the default P2P torrent downloading application that comes with Ubuntu.
Starting and stopping on schedule
To run transmission from the crontab (/etc/crontab), it must be associated with a display as in the following example. The first line starts transmission at midnight, and the second stops it at 8am. Edit the crontab with sudo nano /etc/crontab, and add the following lines (replace username with your Linux username).
0 0 * * * username transmission --display=:0 0 8 * * * username transmission --display=:0 --quit
Now press CTRL + O and then hit return to save your changes to the file.
Running on a server
transmission-daemon is a daemon-based Transmission session that can be controlled via RPC commands from transmission's web interface or transmission-remote. transmission-remote is a remote control utility for Transmission and transmission-daemon. By default, transmission-remote connects to the Transmission session at localhost:9091. Other sessions can be controlled by specifying a different host and/or port.