Skip to main content

Hard and Soft Links in Linux 2020|how to create soft link and hard link in linux|

 Symbolic Links or sym Links

-----------------------------------------




two types of sym links

---------------

1.softlink

2.hard link

1.soft link

--------------------

ln -s ~/

created for accross file sysytem 

Inode address is different

soft links are broken 

2. Hard Links

------------------------

ln ~/

created for the files in local system

Inode address is different 

file permissions will be same for both 

ls-l 

stat file name 

du -h file name 


Comments