Interview Questions - UNIX File Management

Why should I learn to solve UNIX File Management technical interview questions?

Learn and practise solving UNIX File Management technical interview questions and answers to enhance your skills for clearing technical interviews, HR interviews, campus interviews, and placement tests.

Where can I get technical UNIX File Management technical interview questions and answers with explanations?

IndiaBIX provides you with lots of fully solved UNIX File Management technical interview questions and answers with a short answer description. You can download UNIX File Management technical interview questions and answers as PDF files or e-books.

How do I answer UNIX File Management technical interview questions from various companies?

You can answer all kinds of UNIX File Management technical interview questions by practising the given exercises (short answer type). You can also find the frequently asked UNIX File Management technical interview questions with answers from various companies, such as TCS, Wipro, Infosys, CTS, IBM, etc.

1.
How are devices represented in UNIX?
All devices are represented by files called special files that are located in /dev directory. Thus, device files and other files are named and accessed in the same way. A 'regular file' is just an ordinary data file in the disk. A 'block special file' represents a device with characteristics similar to a disk (data transfer in terms of blocks). A 'character special file' represents a device with characteristics similar to a keyboard (data transfer is by stream of bits in sequential order).

2.
What is 'inode'?

All UNIX files have its description stored in a structure called 'inode'. The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode. In addition to descriptions about the file, the inode contains pointers to the data blocks of the file. If the file is large, inode has indirect pointer to a block of pointers to additional data blocks (this further aggregates for larger files). A block is typically 8k.

Inode consists of the following fields:
  1. File owner identifier
  2. File type
  3. File access permissions
  4. File access times
  5. Number of links
  6. File size
  7. Location of the file data

3.
Brief about the directory representation in UNIX.
A Unix directory is a file containing a correspondence between filenames and inodes. A directory is a special file that the kernel maintains. Only kernel modifies directories, but processes can read directories. The contents of a directory are a list of filename and inode number pairs. When new directories are created, kernel makes two entries named '.' (refers to the directory itself) and '..' (refers to parent directory). System call for creating directory is mkdir (pathname, mode).

4.
What are the Unix system calls for I/O?
  1. open(pathname,flag,mode) - open file
  2. creat(pathname,mode) - create file
  3. close(filedes) - close an open file
  4. read(filedes,buffer,bytes) - read data from an open file
  5. write(filedes,buffer,bytes) - write data to an open file
  6. lseek(filedes,offset,from) - position an open file
  7. dup(filedes) - duplicate an existing file descriptor
  8. dup2(oldfd,newfd) - duplicate to a desired file descriptor
  9. fcntl(filedes,cmd,arg) - change properties of an open file
  10. ioctl(filedes,request,arg) - change the behaviour of an open file
  11. The difference between fcntl anf ioctl is that the former is intended for any open file, while the latter is for device-specific operations.