Hard Link Examples


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Hard Link Examples
# 8  
Old 08-06-2010
@fpmurphy,

Thanks for the reply. However this appears to be a symbolic soft link. I am in search of a hard link example on RHEL.


Code:
[root@jralph-linux ~]# ls -ali /bin/ed /bin/red
15237230 -rwxr-xr-x 1 root root 49344 Oct 10  2008 /bin/ed
15237134 lrwxrwxrwx 1 root root     2 Jul 16 11:09 /bin/red -> ed


jaysunn
# 9  
Old 08-06-2010
Quote:
Originally Posted by jaysunn
@pludi,
Thanks for the reply. However I understand the differneces. I am just wondering why one would use a hard link? Or is there a example of a hard link that I can view in a shipped O/S version?
Hard links are harder to spot since they don't tell you where they all are.

One use I've abused hard links for is renaming a file that's being written to. Since the file still exists through all points in the process, and nothing like cp that reads the file is used, nothing bad happens:

Code:
some-long-running-process > hugrfile &
# ...whoops, I wanted hugefile, not hugrfile.
ln hugrfile hugefile
# hugrfile and hugefile are now the same file
rm hugrfile
# Now only hugefile exists.  The file has been renamed with no interruption
# to "some-long-running-process"

Another use for hard links would be when you have a file that needs to be edited by several different people who don't all have access to the directory it's in. Create a hard link in a directory they do have access to and voila. A symbolic link would fail here, since whoever opens it would still need access to the real file.

Last edited by Corona688; 08-16-2010 at 04:47 PM.. Reason: forgot an ampersand
This User Gave Thanks to Corona688 For This Post:
# 10  
Old 08-06-2010
OK, fired up my old RHEL5.3 harddisk and had a look for hard links. The following hard links exists in /usr/bin
Code:
-rwxr-xr-x  2 root root       20044 Jan  5  2009 iconvconfig
-rwxr-xr-x  2 root root       20044 Jan  5  2009 iconvconfig.i686

This User Gave Thanks to fpmurphy For This Post:
# 11  
Old 08-07-2010
Awesome,
Thanks so much for all the great answers. I understand hard links fully now.


jaysunn
# 12  
Old 08-09-2010
A couple very common examples of hard links being used in an O/S which is not specific to any version:

. is a hard link to the current directory.
.. is a hard link to the parent directory.

In an "empty" directory, "." will have 2 links. The actual directory named file in the parent directory will be one of those links, the other is the dot itself. As you create subdirectories, each of those will get a ".." entry which will be another hard link to the current directory.

Easy example for you to try on your own. Create a direcotry, cd to it, ls -lai, create a direcotry, ls -lai again.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

hard link concept

I created a file named as file and a its hard link named as hlink. Problem is that when I delete the file , it gets deleted without notifying that hardlink exists. But as far as I think we cannot delete the file unless we delete all the hard links pointing to it. Is there anything worng... (1 Reply)
Discussion started by: hiten.r.chauhan
1 Replies

2. UNIX for Advanced & Expert Users

Hard link a directory

Is it possible to Hard link a directory? Some people on google say it is possible and some say it is not possible. I haven't seen a working solution though. (3 Replies)
Discussion started by: cokedude
3 Replies

3. Shell Programming and Scripting

Find Hard Link

Goodmorning everybody. A question: How can i match if a file is an hard link or not? (6 Replies)
Discussion started by: Guccio
6 Replies

4. UNIX for Dummies Questions & Answers

Difference between hard link and soft link

Hi Experts, Please help me out to find out difference between a hard link and a soft link. I am new in unix plz help me with some example commands ( for creating such links). Regards S.Kamakshi :) (2 Replies)
Discussion started by: kamakshi s
2 Replies

5. UNIX for Dummies Questions & Answers

Hard Link vs SOft Link????

Hi PLease let me know the usage of Hard Link vs Soft Link i.e what is the basic difference and what happens when one file is changed or deleted in both the cases??? thanks (3 Replies)
Discussion started by: skyineyes
3 Replies

6. UNIX for Advanced & Expert Users

Hard link

Hello, In unix, the normal user can't create a hardlink for a directory. why..? Is there any difference between creating a hard link for a file and directory? The super user can create a hard link for directories. Why we cannot create and super user can create.? Please, can anyone help... (1 Reply)
Discussion started by: nagalenoj
1 Replies

7. UNIX for Dummies Questions & Answers

need some info about symbolic link and hard link

hello folks how y'all doin well i have some questions about symbolic link and hard link hope some one answer me i open terminal and join as root and i wrote ln -s blah blah then i wrote ls i see red file called blah blah but didn't understand what is this can some one explain and... (2 Replies)
Discussion started by: detective linux
2 Replies

8. UNIX for Dummies Questions & Answers

Difference between hard link and soft link in unix

Hi All, Can any one please explain me what is the difference between hard link and soft link in UNIX. Thanks in advance Raja Chokalingam. (2 Replies)
Discussion started by: RAJACHOKALINGAM
2 Replies

9. UNIX for Dummies Questions & Answers

Why use a hard link

Someone asked me a question today about the difference between a hard link and a soft link. That got me thinking and maybe someone can answer. Why would I ever use a hard link if I can use a soft link instead? (2 Replies)
Discussion started by: dangral
2 Replies

10. UNIX for Advanced & Expert Users

Differences between hard link and soft link

Hi all! I'd like to know the differences between hard links and soft links. I've already read the ln manpage, but i'm not quite sure of what i understood. Does a hard link sort of copy the file to a new name, give it the same inode number and same rights? What exactly should I do to do this:... (3 Replies)
Discussion started by: penguin-friend
3 Replies
Login or Register to Ask a Question