Soft and Hard links in Unix/Linux
Last Updated :
19 Jul, 2024
A link in UNIX is a pointer to a file. Like pointers in any programming languages, links in UNIX are pointers pointing to a file or a directory. Creating links is a kind of shortcuts to access a file. Links allow more than one file name to refer to the same file, elsewhere.
There are two types of links :
- Soft Link or Symbolic links
- Hard Links
These links behave differently when the source of the link (what is being linked to) is moved or removed. Symbolic links are not updated (they merely contain a string which is the path name of its target); hard links always refer to the source, even if moved or removed.
For example, if we have a file a.txt. If we create a hard link to the file and then delete the file, we can still access the file using hard link. But if we create a soft link of the file and then delete the file, we can’t access the file through soft link and soft link becomes dangling. Basically hard link increases reference count of a location while soft links work as a shortcut (like in Windows)
1. Hard Links
- Each hard linked file is assigned the same Inode value as the original, therefore they reference the same physical file location. Hard links more flexible and remain linked even if the original or linked files are moved throughout the file system, although hard links are unable to cross different file systems.
- ls -l command shows all the links with the link column shows number of links.
- Links have actual file contents
- Removing any link, just reduces the link count, but doesn’t affect other links.
- Even if we change the filename of the original file then also the hard links properly work.
- We cannot create a hard link for a directory to avoid recursive loops.
- If original file is removed then the link will still show the content of the file.
- The size of any of the hard link file is same as the original file and if we change the content in any of the hard links then size of all hard link files are updated.
- The disadvantage of hard links is that it cannot be created for files on different file systems and it cannot be created for special files or directories.
- Command to create a hard link is:
$ ln [original filename] [link name]
2. Soft Links
- A soft link is similar to the file shortcut feature which is used in Windows Operating systems. Each soft linked file contains a separate Inode value that points to the original file. As similar to hard links, any changes to the data in either file is reflected in the other. Soft links can be linked across different file systems, although if the original file is deleted or moved, the soft linked file will not work correctly (called hanging link).
- ls -l command shows all links with first column value l? and the link points to original file.
- Soft Link contains the path for original file and not the contents.
- Removing soft link doesn’t affect anything but removing original file, the link becomes “dangling” link which points to nonexistent file.
- A soft link can link to a directory.
- The size of the soft link is equal to the length of the path of the original file we gave. E.g if we link a file like ln -s /tmp/hello.txt /tmp/link.txt then the size of the file will be 14bytes which is equal to the length of the “/tmp/hello.txt”.
- If we change the name of the original file then all the soft links for that file become dangling i.e. they are worthless now.
- Link across file systems: If you want to link files across the file systems, you can only use symlinks/soft links.
- Command to create a Soft link is:
$ ln -s [original filename] [link name]
Soft and Hard links in Unix/Linux – FAQs
What are soft links in Linux?
Soft links, also known as symbolic links or symlinks, act as shortcuts or references to files and directories in Linux. Unlike hard links, soft links are not direct mirrors of the target files. Instead, they point to a specific path in the filesystem where the target files or directories reside. If the target file is moved or deleted, the soft link becomes a ‘dangling’ link, pointing to a non-existent file, which results in errors when accessed.
What are hard links in Linux?
Hard links in Linux are essentially additional names for an existing file on the filesystem. Unlike soft links, hard links are indistinguishable from the file they link to because they are direct references to the inode (the data structure that stores file metadata, including its contents). Creating a hard link to a file does not use additional disk space for the contents of the file. When the original file is deleted, the data remains accessible through any of its hard links until all references (links) to the file are deleted.
How to create a soft link in Linux?
Creating a soft link in Linux uses the ln
command with the -s
option, which stands for “symbolic”. The syntax is as follows:
ln -s target_path link_name
For example, to create a symbolic link link.txt
that points to a target file original.txt
in the same directory, you would use:
ln -s original.txt link.txt
This command creates a symbolic link named link.txt
that points to original.txt
.
How to create a hard link in Linux?
Creating a hard link in Linux does not require any special options with the ln
command. The syntax is:
ln target_file link_name
For example, to create a hard link named hard_link.txt
pointing to an original file original.txt
, you would use:
ln original.txt hard_link.txt
This command creates a new directory entry hard_link.txt
that points to the same inode as original.txt
.
What are the differences between soft and hard links?
- Reference Type: Soft links are references to the pathname of a file or directory, while hard links are references to the inode of a file.
- Behavior on Original File Deletion: When the original file is deleted, a soft link pointing to it becomes invalid (dangling), whereas a hard link remains valid as it points directly to the inode of the file.
- Cross-Filesystem Linking: Soft links can point to files or directories across different filesystems because they refer to pathnames. Hard links can only be made to files (not directories) within the same filesystem, as they link directly to inodes.
- Visibility: When listing directory contents with
ls -l
, soft links show the path to which they point using an arrow notation (->
), whereas hard links appear as regular files, showing no indication that they are links.
Similar Reads
Linux Commands Cheat Sheet
Linux, often associated with being a complex operating system primarily used by developers, may not necessarily fit that description entirely. While it can initially appear challenging for beginners, once you immerse yourself in the Linux world, you may find it difficult to return to your previous W
13 min read
grep command in Unix/Linux
The grep command in Unix/Linux is a powerful tool used for searching and manipulating text patterns within files. Its name is derived from the ed (editor) command g/re/p (globally search for a regular expression and print matching lines), which reflects its core functionality. grep is widely used by
7 min read
Linux/Unix Tutorial
Linux is a widely-used open-source operating system, similar to Windows, Mac, and Android. It shares similarities with Unix, another operating system known for its commercial use. Unix and Linux have comparable components, including the kernel, shell, and programs. Many commands in Unix and Linux ex
12 min read
25 Basic Linux Commands For Beginners [2025]
While performing a task, we all need shortcuts. Shortcuts help us to complete a task quickly. Linux comes with such commands which are one to two words, using that commands, you can perform several operations in no time. As a beginner, you must be aware of those basic Linux commands to complete an o
13 min read
Sed Command in Linux/Unix With Examples
The SED (Stream Editor) command is one of the most powerful tools used during text processing in Linux/Unix systems. The SED command is generally used to perform tasks such as search and replace, text manipulation, and stream editing. Using SED, you can easily handle text files without opening them
9 min read
How to Find a File in Linux | Find Command
Linux, renowned for its robust command-line interface, provides a suite of powerful tools for efficient file and directory management. Among these, the "find" command stands out as an indispensable asset, offering unparalleled versatility in searching for files based on diverse criteria. This articl
9 min read
Introduction to Linux Shell and Shell Scripting
If we are using any major operating system, we are indirectly interacting with the shell. While running Ubuntu, Linux Mint, or any other Linux distribution, we are interacting with the shell by using the terminal. In this article we will discuss Linux shells and shell scripting so before understandi
7 min read
AWK command in Unix/Linux with examples
Awk is a scripting language used for manipulating data and generating reports. The awk command programming language requires no compiling and allows the user to use variables, numeric functions, string functions, and logical operators. Awk is a utility that enables a programmer to write tiny but eff
8 min read
Linux Interview Questions and Answer
Linux has hundreds of important concepts that you need to understand before an interview, especially if you have 5 years of experience or are applying for roles like DevOps, Cloud Engineer, or Application Support. That's why Linux interview questions are essential for preparation. These questions co
15+ min read
How to Copy Files and Directories in Linux | cp Command
In the world of Linux computers, a common and important job is copying files. The key tool for this task is the "cp" command. In this simple guide, we'll explore how to copy a file in Linux, looking at the basic steps, different choices you can make, and giving clear examples. We'll also take a peek
8 min read