How to create and Delete Symbolic link file?




Create a Symbolic link file :

#cd /tmp
#ln -s /etc/test.conf test
#ls -l test

Output:

lrwxrwxrwx 1 root root 16 2013-05-16 07:38 test -> /etc/test.conf



Now Delete a symobolic link:


#rm linkname  ( #rm test or #unlink test )

or

#unlink linkname

Post a Comment

0 Comments