When installing and I get to the symbolic link I type in: sudo ln -s/opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver I get a return of: ln: invalid option -- '/' What am I missing? This is my first time exploring linux.
Asked
Active
Viewed 1,834 times
1 Answers
3
It seems that you have an error in your code. Make sure there is a space between -s
and /
, otherwise the path to your program will be interpreted as a parameter to the ln
command. The command line should be like this:
sudo ln -s /opt/utorrent-server-alpha-v3_3/
utserver /usr/bin/utserver

Eduardo Cola
- 5,817
-
-
@Buddhaman, if this is the answer to your problem then you should probably mark it as such. – Tshilidzi Mudau Dec 28 '15 at 12:57
sudo apt-get install transmission-gtk
in a terminal. After installed, search for it in the Dash. – Eduardo Cola Dec 26 '15 at 14:42