How To Install Wine

sudo aptitude install wine
How to use utorrent under wine

This assumes you have downloaded utorrent and installed wine.

   sudo gedit /usr/bin/utorrent

Paste the inside of that file

   #!/bin/sh
cd ~/YOURPATH/utorrent
if [ "$1" != "" ]; then
var="`echo $1 | sed 's/\//\\\/g'`"
var="Z:${var}"
wine utorrent.exe "$var"
else
wine utorrent.exe
fi

Replace "YOURPATH" with the location of uTorrent. Save and exit then type the following to make it executable.

   sudo chmod a+x /usr/bin/utorrent




No comments: