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
What is the use of awk command in unix?
How do I search a whole word in vim?
What are the dos commands?
What does the “echo” command do?
What are the general commands in using unix os for a beginner?
What is pipe command in unix?
What is the search command in unix?
What is the nmap command?
Write a command that will allow a unix system to shut down in 15 minutes, after which it will perform a reboot.
What is unix command?
Write a command that will display files in the current directory, in a colored, long format.
What is grep in bash?
How can you see the command line history?
Write a command to kill the last background job?
Describe the usage and functionality of the command rm –r * in unix?