How do I install uTorrent? [duplicate]

I am trying to install utorrent instead of using the torrent apps and I just came off windows seven can someone help me?


This brief tutorial shows you how to install and use uTorrent in Ubuntu 11.10.

cd Downloads

wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz

Next, run the commands below to extract uTorrent files to the /opt directory.

sudo tar xvzf utorrent-server-3.0-25053.tar.gz -C /opt/

Then run the commands below to change the permission on uTorrent-server folder.

sudo chmod -R 777 /opt/utorrent-server-v3_0/

Next, run the commands below to link uTorrent server to the /user/bin directory.

sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver

Finally, run the commands below to start uTorrent.

utserver -settingspath /opt/utorrent-server-v3_0/

If you get an error about libssl.so package missing, run the commands below to install it, then try starting it again.

sudo apt-get install libssl0.9.8:i386

Now that uTorrent server is started, open your web browser (Firefox) and type the address below.

http://localhost:8080/gui/

The username is admin and leave the password field empty. enter image description here

The first thing you will want to do is specify the download folder. To do that, click ‘Settings’ button.

enter image description here Then scroll down to ‘Directories’ and specify the download folder. enter image description here

This is been verified & checked . Working properly

enter image description here


uTorrent isn't designed for Linux OS from what I've read either that or it isn't well-supported/simple to install, however, you can import it using wine. If you haven't got wine you can install it by copying and pasting the following commands into terminal:

sudo apt-get install wine
wget http://www.utorrent.com/downloads/complete/os/windows

Then go to /home/username/ and click on the executable windows file and open with wine. Honestly, however, since wine has a tendency to use a fair amount of RAM I'd just stick with Transmission.


run

sudo tar -xvf utorrent-server-3.0-25053.tar.gz -C /opt/

without the -z function.

if the -C function doesn't work, you can just tar it,

sudo mkdir /opt/utorrent-server-v3_0/

then

sudo mv /where-ever-you-tar'd-the-file/ /opt/utorrent-server-3_0/

any time you don't know what a command does you can always check the help function. ex:

mkdir --help
mv --help

This could also be a problem attempting to run 32bit executable on 64bit architecture.

Try installing ia32-libs

sudo apt-get install ia32-libs

This will install the 32bit libraries and hopefully allow you to run the executable.