the difference between a soft link and a hard link?

Answers were Sorted based on User's Feedback



the difference between a soft link and a hard link?..

Answer / rajhshekhar aletty

using hard link, we can't create links for directories. the
link can be created within the same File System, the link
can't span into an other File System.

using soft (symbol) link, we can create links for
directories moreover that link can span into an other File
System.

Is This Answer Correct ?    8 Yes 0 No

the difference between a soft link and a hard link?..

Answer / rajan.v.r

in hardlink the pid of the two files are same. we cannot
create the link b/w two directories and files are in two
different system directory. but in softlink the pids are
different and we cant two link directories

Is This Answer Correct ?    2 Yes 0 No

the difference between a soft link and a hard link?..

Answer / tam

Softlink can be created across the file system.


Hardlink can be created within the file system.

Is This Answer Correct ?    1 Yes 0 No

the difference between a soft link and a hard link?..

Answer / linuxdemon

soft link is like shortcut.so if you delete the softlink
file, the original file wont get deleted.

Hard link is like real copy of the file.so if you delete the
hardlink file, the original file will be deleted.

ln filename hardlinkfilename
ln -s filename softlinkfilename

Is This Answer Correct ?    6 Yes 6 No

the difference between a soft link and a hard link?..

Answer / upendar

Soft Link: When we create a soft link, the link is created and stored in same address where the file is stored. The disadvantage of this type of link is if we delete the file the link becomes broken link and our data is lost.

Ex: ln -s data.text slink.text
If we delete data.text, slink.text link becomes broken link and our data lost.

Hard Link: When we create a hard link, the link is created and
stored in different address. But if we delete the file , the file is deleted and the link remain active so we won't loss the data.

Ex: ln data.text hlink.text
If we delete the file data.text, our data would be accessible through the hlink.text.

Is This Answer Correct ?    0 Yes 0 No

the difference between a soft link and a hard link?..

Answer / srinivasan

Soft Link:
1. It can be created across file system
2. Different inode number than original file.
3. On deleting original file soft link cannot be accessed.
4. Can be created on a file or directory.
5. Source file need not exist for soft link creation.
6. Need extra memory to store data of original file.
7. Access to the file is slower due to overhead to access
file.

Hard Link:
1. Only within file system.
2. Same inode number as original file.
3. It can still be accessed.
4. Only on files.
5. Source file should exist.
6. Not required.
7. Faster than soft link.

Thanks,
Srini

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

distinguish between interrupts and exceptions?

2 Answers   Infosys, Wipro,


How do you find path of a directory? Give its syntax.

7 Answers  


Write a command that will output the sorted contents of a file named in.txt and place the output in another file named out.txt, while at the same time excluding duplicate entries.

1 Answers  


What is mtime in find command?

1 Answers  


what is the command to find out which shell you are running?

14 Answers  






How to rename files and folders?

7 Answers   IBM, Oracle,


Name the various commands that are used for the user information in unix.

0 Answers  


What are awk commands?

0 Answers  


how to find the 51th record of a file containing 100 records in unix.

12 Answers   IBM,


Which command is used to create a directory?

0 Answers  


What is s and g in sed command?

0 Answers  


What is the different between UNIX command and UNIX shell script?

2 Answers  


Categories