Linux basics

  • hard link: points to data on the disk (inode)

  • soft link (symlink, symbolic link): points to a file on the disk (relative path)

    • ln -s target_name link_name

    • if no -s, then it creates a hard link

Last updated