-
Program Termination
If a program is terminated at the middle of execution in UNIX, What will happen to the program?
-
-
Sleep and Wait in Linux
What is the difference between Sleep and Wait in Linux ?
-
IBM-Aix file system question
Creating file system with already created LV and and without LV.. What is the difference between these two??
-
What is VLAN ?
what is vlan in vio server in aix ? What is its main purpose ?
-
Semaphore Variable
Explain if semaphore variable is different from ordinary variable ?
-
-
LINUX Patch / Package
How to apply Patch / Package for LINUX?
-
Server Down in LINUX
In LINUX OS if Server goes down, What will you do to restore it back?
-
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 it possible to restrict incoming message?
Yes, using the mesg command.
-
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.
-
How is the command “$cat file2 “ different from “$cat >file2
Both the commands mean the same , the file file1 is read and its contents are copied to file2
-
Explain the following commands?
$ ls > file1$ banner hi-fi > message$ cat par.3 par.4 par.5 >> report$ cat file1>file1$ date ; who$ date ; who > logfile$ (date ; who) > logfile
-
-
-
-
-
-
Where is the semaphore stored in UNIX operating system?
Before going into the storage of semaphore it is first vital to know about semaphores. A semaphore is nothing but a term used in UNIX for a variable which acts as a counter. So the next question that comes in mind is what for we need this variable. It’s so simple. The reason is explained below. For instance there may be times when two processes try to access the same file simultaneously. In...
UNIX Interview Questions
Ans