Answer Posted / prince udirmaan deka
As we know that there are three file system in the UNIX. They are Ordinary File, Device File and Directory File. The fourth file is Symbolic File. Like unlike Hard Links, they don't stored any content but provides the pathname of the file. Symbolic Links are sometime often called as Soft links.
The ln command is used to create soft link with -s option.
For example:-
$ ln ln -s note note.sys
$ ls -il note note.sys
12345 rwx_wx_w_ Kumar 2 metal grp 12 feb 22 12:23 note
12346 lrw_rwxr_x Kumar 2 metal grp 10 mar 12 16:00 note.sys->
From the above example we can see two expressions:-
1) l(el):identifies the permission of the file.
2) ->(pointer): provide path name to the file note.
In soft link, we can see that inode number is different for each file.
It is important to realize that if we delete the file note.sym, then we recreate link easily. But if note file is deleted then would lose the content of data. In that case, note.sys points to non- existent file and becomes dangling pointer.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is Mapped Memory?
What is socket in ipc?
What is Datagram style?
What is Connection style?
What is Shared Access to a File?
How to Access a FIFO?
What is ipc certified soldering?
What are 3 ipc techniques?
What are System Calls?
What is Fast Local Communication?
How to Create a FIFO?
How to Debugg Semaphores?
What are Pipes?
What ipc means?
How to Initialize Semaphores?