Link
Soft Link
  • ln -s file link
  • Hard link
  • ln file link
  • A hard link is merely an additional name for an existing file
  • Cannot be created for directories, and they cannot cross filesystem boundaries or span across partitions
  • Linux does not distinct the hard links and the original copy, they are pointing to the same inode, remove a link or copy does not affect other links
  • Reference
  • Linux ln Command Tutorial for Beginners
  • Hard Link Definition