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.
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.
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.
lrwxrwxrwx 1 saeed saeed 28 Dec 11 21:51 libGL.so -> /usr/lib/nvidia-173/libGL.so and the second path doesn't exist so i stuck in this problem, thanks for your answer, what should be my command in this situation, if I use `sudo rm libGL.so then this file will be removed:(
– saeed masoomi
Dec 11 '17 at 19:30
rm: cannot remove dir/: Is a directory, remove the trailing /.
– subtleseeker
May 26 '20 at 08:41
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.
unlink has nothing to do with symlinks in particular. See http://serverfault.com/a/38817/64085
– Matthew Read
Apr 15 '15 at 16:24
unlink will remove the symlink, it is not an alias of rm. They are different, if ever so slightly. For one you cannot pass multiple arguments to unlink
– Jarad Downing
Feb 17 '20 at 19:49
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
You can use the following to remove the symbolic link
sudo rm /usr/share/php,yad,in
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).Also see this post and my comment to the first answer to access phpmyadmin when getting a not found error after install.
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.
/ at the end, which needs to be removed. Command rm works as well.
– М.Б.
Jan 16 '20 at 01:15
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