![]() |
|
|
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 |
| Differentiate Soft and Hard Link | balu_solaris | UNIX for Dummies Questions & Answers | 4 | 01-23-2009 05:18 PM |
| need some info about symbolic link and hard link | detective linux | UNIX for Dummies Questions & Answers | 2 | 01-08-2008 07:36 AM |
| hard/soft link question | Browser_ice | UNIX for Dummies Questions & Answers | 1 | 08-19-2006 03:13 AM |
| Difference between hard link and soft link in unix | RAJACHOKALINGAM | UNIX for Dummies Questions & Answers | 2 | 08-01-2006 05:10 AM |
| Differences between hard link and soft link | penguin-friend | UNIX for Advanced & Expert Users | 3 | 03-08-2002 03:49 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
As mentioned in one of your other posts, read some books or tutorials for this basic question:
Unix Tutorials/Programming Tutorials/Shell Scripting Tutorials Regards |
|
||||
|
hard lick-- used in cases when you want the link to be in the same file system. In this case the inode for both link and the file is the same. If you want to move the shardlink to another location or you want to move the original file, it does not affect either of them.
command is ln "file name" "link" this can not be used on directories. and can be used only in the same fS and not outside file systems Soft links: used when you want a temporary link. ths inode values are different here for link and the file. this can be both for file and directories. If the source file gets deleted the link will be removed at next reboot . This can extend across file systems command is ---ln -s "file" "link" please reverrt if you have any qureries. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|