0

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.

1 Answers1

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,876
  • 3
  • 20
  • 33