Symbolic link is a special type of file that reference to other file or directory. It is same as creating short cut in Windows. You can create a symlink for your directory using below command from SSH:
ln -s <destination> <linkname>
Note: If you remove the original directories then the symbolic will no longer work. However, if you remove symlink then there will not be any effect in target folders.
You will be able to see inside a directory if there is any symlink exists using below command:
ls -la
Thanks,
ln -s <destination> <linkname>
Note: If you remove the original directories then the symbolic will no longer work. However, if you remove symlink then there will not be any effect in target folders.
You will be able to see inside a directory if there is any symlink exists using below command:
ls -la
Thanks,
Comment