the difference between a soft link and a hard link?
Answer Posted / 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 View All Answers
Explain command to display different lines that are found when compare two files?
What is grep and how do you use it?
Explain mount and unmount command.
What is difference between grep and find command in unix?
Who command in unix?
What is the use of tee command?
What does grep v do?
Explain the steps that a shell follows while processing a command.
What are grep patterns?
How to use grep command to list find the records of a file containing 10 different strings?
How do I search a whole word in vim?
What is time_t?
What is the size of time_t?
What do chgrp command do?
What is $0 bash?