Home » Linux Symbolics Links

Linux Symbolics Links

by Online Tutorials Library

Symbolic Links

Symbolic links are also called soft links. Command ln -s is used to create soft link. It doesn’t link to Inodes but create a name to mapping. It create its own Inode number.

Example:

Linux Symbolic Links

Look at the above snapshot, we have created a symbolic link for file xyz with command “ln -s xyz symlink_to_xyz”. Symbolic link Inode is different from the original file Inode number. Target permissions are applied on the symlink file. Hard links are limited to their own partition, but symbolic links can be linked anywhere.

You may also like