-
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...
-
-
-
Masked Code
What is the number of masked code ee@?
-
-
Write a command to display a file’s contents in various formats?
$od -cbd file_namec - character, b - binary (octal), d-decimal, od=Octal Dump.
-
Which of the following commands is not a filter?(a)man , (b) cat , (c) pg , (d) head?
Ans: manA filter is a program which can receive a flow of data from std input, process (or filter) it and send the result to the std output.
-
UNIX Interview Questions
Ans