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

Step 1: Delete fileA

bashCopyEditrm fileA

Step 2: Check Accessibility of softlinkA and hardlinkA

bashCopyEditls -l softlinkA hardlinkA

Expected Behavior:

  • softlinkA will break and become a dangling (invalid) link because it only points to fileA, 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
    
  • hardlinkA will still work normally because a hard link is another reference to the same inode (data) of fileA.

  • The file contents remain intact even after deleting fileA.

  • You can still view the content using:

      bashCopyEditcat hardlinkA
    

    Output:

      nginxCopyEditHello Linux
    

Key Difference:

FeatureSoft Link (ln -s)Hard Link (ln)
Inode numberDifferent from the original fileSame as the original file
Accessibility after deleting fileABreaks (invalid link)Still accessible (file exists)
StorageOnly 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.

Written by

Ravi Vishwakarma
Ravi Vishwakarma