0
2.0kviews
1 (a) Compare among hard and soft links.

Mumbai University > Information Technology > Sem 5 > Open Source Technology

Marks: 5M

Year: Dec 2015

1 Answer
1
2views

Hardl ink

• Hard link have same i-node no.

• Hard link acsts like mirror copy to original file

• You cant create a hard link for directory

• If you delete original file, hard link remains as it is.

• Hard link cant cross file system.

• (ln) command is used to create hard link.

• Hard link is not possible in different partition.

• Hard link refers to the specific location of physical data.

Soft link

• Soft link have different i-node no.

• Soft link is actual link to original file.

• You can create a soft link for directory

• If you delete original file, soft link fails

• Soft link can cross file system.

• (ln - s) command is used to create soft link.

• Soft link is possible in different partition.

• Soft link refers to a symbolic path indicating abstract location of another file.

Please log in to add an answer.