When I enter the following command on a terminal session.
$ sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver
It shows me the following message
ln: failed to create symbolic link ‘/usr/bin/utserver’: File exists
sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver
failed to create the symbolic link.
What should I do?
ln -s
? – hg8 Dec 01 '15 at 15:31"$i"
? – steeldriver Dec 01 '15 at 15:36-f
option ofln
to force overwriting existing files:sudo ln -sf /opt/utorrent-server-v3_0/utserver /usr/bin/utserver
– Byte Commander Dec 01 '15 at 18:24