Having a symlink:

ln -s /var/www /media/Disk2/dropbox/www

How can I remove a folder from the symlink located at /media/Disk2/dropbox/www/test without afecting the main folder?

link|improve this question

55% accept rate
1  
Are you saying you want to remove /media/Disk2/dropbox/www/test without removing /var/www/test? That's not possible, they are one and the same folder. – Rob Wouters Jan 30 at 17:20
feedback

1 Answer

up vote 2 down vote accepted

You can't, a symlink is just a file containing a pointer to the other folder(subdirectory).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.