Tag Archive for 'ssh'

Transmission on Ubuntu 8.04 Server the best Bittorrent client with a web interface

I like the new release of Transmission the Bittorrent client because it’s web interface requires no additional installation of a web server or the entire LAMP stack to do something very simple. My headless server runs Ubuntu 8.04 LTS which till now only had the job of being a file server, not long ago I decided to expand it’s functions and make it grab torrents for me. Remember I have a headless server and only manage it via SSH.

The main requirement was for a BT client that was light and also manageable via HTTP. In my case I decided for Transmission 1.34 because it bring everything I need under one name, except it’s not officially supported or included in the Ubuntu 8.04 repositories.

The solution is to simply add an extra repository to the /etc/apt/sources.list and then execute a simple apt-get install.

Transmission installation

To install Transmission 1.34 or newer versions in Ubuntu 8.04 LTS we first need to add an entry to the sources.list.


sudo nano /etc/apt/sources.list

And add the following.


## Transmission repository not officially supported by the Ubuntu team
deb http://ppa.launchpad.net/bortis/ubuntu hardy main
deb-src http://ppa.launchpad.net/bortis/ubuntu hardy main

Now that we have the new repository in the sources list let’s install the new package.


sudo apt-get install transmission-cli

Check to see if Transmission starts.


transmission-daemon

Now we have Transmission running, let’s log in to the web interface.


http://192.168.15.1:9091

This is by far the easiest way of installing a Bittorrent client that by default includes a web interface and has no need for a web server to be installed in order to work.

Information compiled from:
http://forum.transmissionbt.com/

Verify installed version


transmissioncli -v

If you find any of the material on this site useful please take a moment to make a small donation.

Tunneling HTTP Via SSH Using Free Tools

First one and its meant to be very easy, check out the podcast for itradio.com.au

If you find any of the material on this site useful please take a moment to make a small donation.

Slow SSH

modem

Changing the default port on SSH can make the job of a script kiddie a bit harder but it may bring some problems for other services working on the same port, that’s what happened to me not long ago. In case you have no idea VSFTP runs on the same port as SSH, after changing the default port to 2020 I began to notice that VSFTP transters drop from 80kbps down to 20kbps after checking the VSFTPD configuration (/etc/vsftpd.conf) I found the following problem.

# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES

change to

connect_from_port_20=NO

I guess that VSFTP was only trying to verify that port 20 was being used for transfers, the solution was to change the “YES” to “NO”, after restarting VSFTP the rate of the file transfers went up.

If you find any of the material on this site useful please take a moment to make a small donation.