Showing posts with label transmission. Show all posts
Showing posts with label transmission. Show all posts

Monday, November 12, 2007

Stopping Bittorrent client after finishing downloads

Leaving your bittorrent client running after finishing download is a generally a good idea. However for sake of geek curiosity I tried a simple method of stopping my transmission bittorrent client after finishing the download with ....

/usr/bin/transmission-cli -f 'killall transmission-cli' elephantsdream-1920-hd-mpeg4-su-ac3.avi.torrent

The -f, --finish <shell script> is used to launch shell scripts. The 'killall transmission-cli' command kills (all) transmission-cli bittorrent clients running on this computer. It seems to work for me, do share your experiences

Wednesday, November 7, 2007

Changes in Debian Transmission package (transmissioncli renamed)

I just noticed that the light-weight bittorrent client Transmission package on GNU/Debian Linux has renamed its CLI(Command Line Interface) program name from transmissioncli to transmission-cli .

Here is note from transmission (0.90.dfsg-1) package changelog.
* debian/transmission-cli.*: binary upstream rename from transmissioncli to transmission-cli (Leo "costela" Antunes)

I have updated my old post Using Transmission Bittorrent client on console to suit this.

Monday, October 8, 2007

Using Transmission Bittorrent client on console

Update: A change in package since this post was published, read the update here
Here is an another light-weight bittorrent client Transmission which really works well. One of the highlight of this program is that its easy to use even for those who are new to Bittorrent P2P system and the bittorrent old hands would like Transmission because it stays out of their way and integrates nicely with your environment. I primarily work on command line console and like to run my bittorrent downloads in a screen session in the background and this bittorrent clients fits the bill for me.

You can learn more about this program from its features page.
Transmission runs natively on over five operating systems. Seamless configuration of your network, intelligent banning of peers who send corrupted data, and built in Peer Exchange are some of the features which enable Transmission to download your files as quickly as possible. All this is done in the background, without the user having to worry about complicated settings.

So, lets get started with transmission shall we, We will download the latest GNU/Linux Debian (Stable) CD ISO from the Internet. I already downloaded the torrent file of the first CD in my current directory. And installed transmission-cli package which provides the transmission-cli program on Debian Sid. This is a command-line only version of transmission, if you are interesting GUI version use the GTK version which is also available on Debian Sid or from the project page.

Here we launch the transmission with screen, the -p tells transmission to listen on port 25000. You can stop the program by pressing Ctrl+C .

screen -a -S 'Bittorrent' /usr/bin/transmission-cli -p 25000 debian-40r1-i386-CD-1.iso.torrent

Happy Torrenting !!!!

To learn about screen read the One minute Screen tutorial .

Popular Posts