How to create hardlinks and softlinks on files?
Answers were Sorted based on User's Feedback
Answer / vijayta
ln command is used to create links in Unix
For HardLinks:-
ln <source> <name oflink>
For SoftLink:-
ln -s <source> <linkname>
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / manish
softlink creates another inode in the filesystem but hard
link just increases the reference count of the existing
inode
| Is This Answer Correct ? | 10 Yes | 3 No |
Give the command to display space usage on the UNIX file system.
distinguish between interrupts and exceptions?
Which command will print your home directory on screen?
what are processor execution levels and priorities?
what is the command to list files in a directory in UNIX?
use of ls command
What is "type" command in unix?what is the functionality??
Give Command that will move a single file called "unix.txt"
Are you in or at the office?
Write a command to find all of the files which have been accessed within the last 30 days.
In UNIX, what is the command to edit contents of the file?
what will this do $cat > file.c ?(file.c is a file in current directory)