Recently I was asked this during a job interview. I was honest and said I knew how a symbolic link behaves and how to create one, but do not understand the use of a hard link and how it differs from a symbolic one.
feedback
|
|
Underneath the file system files are represented by inodes (or is it multiple inodes not sure) A file in the file system is basically a link to an inode. When you delete a file it removes one link to the underlying inode. The inode is only deleted (or deletable/over-writable) when all links to the inode have been deleted. A symbolic link is a link to another name in the file system. Once a hard link has been made the link is to the inode. deleting renaming or moving the original file will not affect the hard link as it links to the underlying inode. Any changes to the data on the inode is reflected in all files that refer to that inode. Note: Hard links are only valid within the same File System. Symbolic links can span file systems as they are simply the name of another file. | |||||||||
feedback
|
|
Hard links are useful when the original file is getting moved around. For example, moving a file from /bin to /usr/bin or to /usr/local/bin. Any symlink to the file in /bin would be broken by this, but a hardlink, being a link directly to the inode for the file, wouldn't care. Hard links may take less disk space as they only take up a directory entry, whereas a symlink needs its own inode to store the name it points to. Hard links also take less time to resolve - symlinks can point to other symlinks that are in symlinked directories. And some of these could be on NFS or other high-latency file systems, and so could result in network traffic to resolve. Hard links, being always on the same file system, are always resolved in a single look-up, and never involve network latency (if it's a hardlink on an NFS filesystem, the NFS server would do the resolution, and it would be invisible to the client system). Sometimes this is important. Not for me, but I can imagine high-performance systems where this might be important. I also think things like mmap(2) and even open(2) use the same functionality as hardlinks to keep a file's inode active so that even if the file gets unlink(2)ed, the inode remains to allow the process continued access, and only once the process closes it does the file really go away. This allows for much safer temporary files (if you can get the open and unlink to happen atomically, which there may be a POSIX API for that I'm not remembering, then you really have a safe temporary file) where you can read/write your data without anyone being able to access it. Well, that was true before /proc gave everyone the ability to look at your file descriptors, but that's another story. Speaking of which, recovering a file that is open in process A, but unlinked on the file system revolves around using hardlinks to recreate the inode links so the file doesn't go away when the process which has it open closes it or goes away. | |||
|
feedback
|
|
Symbolic links link to a path name. This can be anywhere in a system's file tree, and doesn't even have to exit when the link is created. The target path can be relative or absolute. Hard links are additional pointers to an inode, meaning they can exist only on the same volume as the target. Additional hard links to a file are indistinguishable from the "original" name used to reference a file. | |||||||
feedback
|
|
I would point you to Wikipedia. http://en.wikipedia.org/wiki/Symbolic_link http://en.wikipedia.org/wiki/Hard_link Couple of points
HTH. | |||
feedback
|
|
Some nice intuition that might help, using any Linux console. Create two files:
Enter some Data into them:
(Actually, I could have used echo in the first place, as it creates the files if they don't exist... but never mind that.) And as expected:
Let's create hard and soft links:
Let's see what just happened:
Changing the name of blah1 does not matter:
blah1-hard points to the inode, the contents, of the file - that wasn't changed.
The contents of the file could not be found because the soft link points to the name, that was changed, and not to the contents. Likewise, If blah1 is deleted, blah1-hard still holds the contents; if blah2 is deleted, blah2-soft is just a link to a non-existing file. | ||||
|
feedback
|
|
Hard links are very useful when doing incremental backups. See rsnapshot, for example. The idea is to do copy using hard links:
The new backup will not take up any extra space apart from any changes you've made, since all the incremental backups will point to the same set of inodes for files which haven't changed. | |||
|
feedback
|
|
This link provides a good explanation of the relationship between file names, inodes, and file data with respect to hard and soft/symbolic links. It summaries most of the points made in the other answers. | |||
|
feedback
|
|
I add on Nick's question: when are hard links useful or necessary? The only application that comes to my mind, in which symbolic links wouldn't do the job, is providing a copy of a system file in a chrooted environment. | |||||
feedback
|
|
Also:
| |||
|
feedback
|
|
Adding to all the above answers, the difference in finding the hardlink and softlink file can be understood as below:- I have a file f6 in current directory and a directory named t2. File named f1 and ./t2/f2 are symbolic links to f6. File named f7 and ./t2/f8 are hard links of f6. To find soft as well as hard link we can use:- $ find -L . -samefile f6 ./f1 ./f6 ./f7 ./t2/f2 ./t2/f8 To find only hardlink we can use:- $ find . -xdev -samefile f6 ./f6 ./f7 ./t2/f8 Since hardlink can be created on the same file system, so we can search all the hardlinks without -L option used (with -xdev option) in the same file-system/mount-point. It saves the unnecessary search into different mount points. So searching the hardlink is somewhat faster then searching the softlinks(Please rectify if I am wrong or not clear). | |||
|
feedback
|