Delete fileA and check whether softlinkA and hardlinkA are still accessible. (Explain the difference in behavior)

1 min read
Step 1: Delete fileA
bashCopyEditrm fileA
Step 2: Check Accessibility of softlinkA
and hardlinkA
bashCopyEditls -l softlinkA hardlinkA
Expected Behavior:
1. Soft Link (softlinkA
) Behavior
softlinkA
will break and become a dangling (invalid) link because it only points tofileA
, which is now deleted.Running
ls -l softlinkA
will show:sqlCopyEditlrwxrwxrwx 1 user user 6 Mar 29 12:34 softlinkA -> fileA
But trying to access it (
cat softlinkA
) will give an error:yamlCopyEditcat: softlinkA: No such file or directory
2. Hard Link (hardlinkA
) Behavior
hardlinkA
will still work normally because a hard link is another reference to the same inode (data) offileA
.The file contents remain intact even after deleting
fileA
.You can still view the content using:
bashCopyEditcat hardlinkA
Output:
nginxCopyEditHello Linux
Key Difference:
Feature | Soft Link (ln -s ) | Hard Link (ln ) |
Inode number | Different from the original file | Same as the original file |
Accessibility after deleting fileA | Breaks (invalid link) | Still accessible (file exists) |
Storage | Only stores a reference (pointer) | Points directly to the file’s data |
0
Subscribe to my newsletter
Read articles from Ravi Vishwakarma directly inside your inbox. Subscribe to the newsletter, and don't miss out.
#HardLinks #SoftLinks #HardLink #SoftLink #SymbolicLink #Filesystem #Unix #Linux #FileOrganization #BackupStrategies #FileReferencing #FilesystemManagementDELETE_FILE
Written by
