日期:2014-05-16  浏览次数:20564 次

【面试必备】Unix Question
Unix的面试题,其实面试官也不会指望你会很多Unix的知识,所以背套面试题是很有用的。

What is the use of ?grep? command?
?grep? is a pattern search command. It searches for the pattern, specified in the command line with appropriate option, in a file(s).
Syntax : grep
Example : grep 99mx mcafile

What is the difference between cat and more command?
Cat displays file contents. If the file is large the contents scroll off the screen before we view it. So command 'more' is like a pager which displays the contents page by page.

Write a command to kill the last background job?
Kill $!

Which command is used to delete

all files in the current directory and all its sub-directories?
rm -r *

Write a command to display a file?s contents in various formats?
$od -cbd file_name
c - character, b - binary (octal), d-decimal, od=Octal Dump.

What will the following command do?
$ echo *
It is similar to 'ls' command and displays all the files in the current directory.

Is it possible to create new a file system in UNIX?
Yes, ?mkfs? is used to create a new file system.

Is it possible to restrict incoming message?
Yes, using the ?mesg? command.

What is the use of the command "ls -x chapter[1-5]"
ls stands for list; so it displays the list of the files that starts with 'chapter' with suffix '1' to '5', chapter1, chapter2, and so on.

Is ?du? a command? If so, what is its use?
Yes, it stands for ?disk usage?. With the help of this command you can find the disk capacity and free space of the disk.

Is it possible to count number char, line in a file; if so, How?
Yes, wc-stands for word count.
wc -c for counting number of characters in a file.
wc -l for counting lines in a file.

Name the data structure used to maintain file identification?
?inode?, each file has a separate inode and a unique inode number.

How many prompts are available in a UNIX system?
Two prompts, PS1 (Primary Prompt), PS2 (Secondary Prompt).

How does the kernel differentiate device files and ordinary files?
Kernel checks 'type' field in the file's inode structure.

How to switch to a super user status to gain privileges?
Use ?su? command. The system asks for password and when valid entry is made the user gains super user (admin) privileges.

What are shell variables?
Shell variables are special variables, a name-value pair created and maintained by the shell.
Example: PATH, HOME, MAIL and TERM

What is redirection?
Directing the flow of data to the file or from the file for input or output.
Example : ls > wc

How to terminate a process which is running and the specialty on command kill 0?
With the help of kill command we can terminate the process.
Syntax: kill pid
Kill 0 - kills all processes in your system except the login shell.

What is a pipe and give an example?
A pipe is two or more commands separated by pipe char '|'. That tells the shell to arrange for the output of the preceding command to be passed as input to the following command.
Example : ls -l | pr
The output for a command ls is the standard input of pr.
When a sequence of commands are combined using pipe, then it is called pipeline.

Explain kill() and its possible return values.
There are four possible results from this call:
?kill()? returns 0. This implies that a process exists with the given PID, and the system would allow you to send signals to it. It is system-dependent whether the process could be a zombie.
?kill()? returns -1, ?errno == ESRCH? either no process exists with the given PID, or security enhancements are causing the system to deny its existence. (On some systems, the process could be a zombie.)
?kill()? returns