243

I was trying to create this symbolic link:

sudo ln -s /usr/share/phpmyadmin /var/www/phpmyadmin

but I accidentally typed:

sudo ln -s /usr/share/php,yad,in /var/www/phpmyadmin

So now I want to correct it but it says symbolic link already exist.

Braiam
  • 69,112
James
  • 2,439

6 Answers6

270

You can use rm to delete the symlink.

Example:

-rw-rw-r-- 1 2014-01-02 09:21 tmo
lrwxrwxrwx 1 2014-01-02 09:21 tmo2 -> tmo

Then ...

 rm tmo2

will remove the symlink.

Rinzwind
  • 309,379
54

You can try the unlink command as well.

unlink is a similar command to rm. Therefore rm <symlink> will work same as unlink <symlink>

Here is the man page.

Zanna
  • 72,312
hakunami
  • 735
18

Suppose you were trying to do:

sudo ln -s /usr/share/phpmyadmin /var/www/phpmyadmin/

but accidentally did:

sudo ln -s /usr/share/somethingelse /var/www/phpmyadmin/

To correct it simply navigate to the folder where the link is and unlink

cd /var/www/phpmyadmin/  
~:# unlink somethingelse
Ravan
  • 9,567
9

A small caveat I found was that I was trying to run rm and unlink on a symlink and I was getting an error that it was a directory.

$ rm folder_name/
rm: cannot remove ‘folder_name/’: Is a directory
$ unlink folder_name/
unlink: cannot unlink ‘folder_name/’: Not a directory

To remove the symlink, I used unlink folder_name. It was failing as there was a trailing / which causes the file to appear to be a directory.

Zanna
  • 72,312
8

You can use the following to remove the symbolic link

sudo rm /usr/share/php,yad,in

Explanation

  • rm is the terminal command to remove a file. See rm --help for more options that it can take.
  • sudo is used because the symbolic link was created with sudo. The file therefore belongs to root and your normal user will not have permission to edit/remove it (you would be able to force this if you had write permission on the directory, which would not be the case here).

Extra

Also see this post and my comment to the first answer to access phpmyadmin when getting a not found error after install.

Zanna
  • 72,312
chesedo
  • 1,749
  • 1
  • 14
  • 25
-1

I stumbled here because I had to remove a dpkg-divert and the new package won't install until it was removed.

So if you have done something like this:

sudo dpkg-divert --add --rename --divert /usr/bin/gcc.real /usr/bin/gcc

You need to remove it with something like this:

sudo dpkg-divert --remove /usr/bin/gcc.real
Zanna
  • 72,312