![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using find to locate hard and soft links with tar | manthasirisha | Shell Programming and Scripting | 4 | 03-14-2006 03:57 PM |
| Ignoring symbolic/hard links while scanning through a directory | Yifan_Guo | High Level Programming | 4 | 03-11-2005 06:38 PM |
| cp a dty without symbolic links? | JAKEZ | SUN Solaris | 7 | 09-21-2004 01:55 PM |
| links.... soft or hard.. not sure? | yls177 | UNIX for Dummies Questions & Answers | 5 | 10-25-2002 04:12 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
You have an explanation about hard links and soft links wiyh directories.
An explanation with files could be: A file is referenced in the system by a i-node number, when you create a file, the OS assign an i-node number to the file_name. example: a- create a file "pp" echo "hard_soft_link_inode?" >> pp b- list the file ls -l pp -rw-r--r-- 1 root system 22 May 07 18:39 pp The number 1 is the number of hard links that the file has. c- view the i-node number of pp assigned by the system: ls -i pp 24 pp the 24 number is the i-node number d- when you make a hard link, the count of i-nodes of the file is increased by 1 (and when you unlink the the hard link the number is decreased by 1): ln pp hard_link_to_pp ln pp hard_link2_to_pp ls -l pp -rw-r--r-- 3 root system 22 May 07 18:39 pp ls -i hard_link_to_pp 24 hard_link_to_pp ls -i hard_link2_to_pp 24 hard_link_to_pp if you remove the original file (you can access the file content by the hard link) rm pp cat hard_link_to_pp hard_soft_link_inode? when you use the unlink command the i-node count decrease by 1: unlink hard_link_to_pp ls -l hard_link2_to_pp -rw-r--r-- 1 root system 22 May 07 18:39 hard_link2_to_pp if you unlink/rm again you lost the file. Note: I prefer to use the unlink command over a hard link over the rm command. The soft link is a pointer that could be point to nothing, to a file in the same FS, or to a file in other FS (recommended use). To create a soft link you need to use the "-s" flag of the "ln command". A common use of hard links is some scripts in the rcX.d (X=1,2,3,S) that are associated to files in the init.d directory. Use the "ls -i" in rc3.d and in the init.d directories. Good luck with your test, and sorry with my poor english. |
|
||||
|
thank you guys for taking time typing the stuff. it's been really helpful.
how to find out the files have the same inode number? and, is it easy to find out who has access to my files? thks |
|
||||
|
a-
ls -iR |sort > inum_of_files.txt more inum_of_files.txt b- for a specific file, take the i-node number with ls -i and then: find / -inum <i-node_number> -ls (example for AIX) Good luck. Hugo. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|