File management in Unix Interview questions


Total available count: 13
Subject - Operating System
Subsubject - File management in Unix

What are links and symbolic links in UNIX file system?

A link is a second name (not a file) for a file. Links can be used to assign more than one name to a file, but cannot be used to assign a directory more than one name or link filenames on different computers.

Symbolic link 'is' a file that only contains the name of another file. Operation on the symbolic link is directed to the file pointed by it. Both the limitations of links are eliminated in symbolic links.

Commands for linking files are:

Link ln filename1 filename2

Symbolic link ln -s filename1 filename2

 




Next 5 interview question(s)

1
How do you change File Access Permissions?
2
What are the Unix system calls for I/O?
3
Brief about the directory representation in UNIX?
4
What is inode?
5
How are devices represented in UNIX?