Sun Solaris (OS) Interview Questions And Answers

Download Solaris Interview Questions and Answers PDF

Refine your Solaris interview skills with our 64 critical questions. Our questions cover a wide range of topics in Solaris to ensure you're well-prepared. Whether you're new to the field or have years of experience, these questions are designed to help you succeed. Get the free PDF download to access all 64 questions and excel in your Solaris interview. This comprehensive guide is essential for effective study and confidence building.

64 Solaris Questions and Answers:

Solaris Job Interview Questions Table of Contents:

Solaris Job Interview Questions and Answers
Solaris Job Interview Questions and Answers

1 :: What is the command to do an interactive boot from the ok prompt?

Answer: The Interactive Boot Process:
At the ok prompt, type boot -a and press Enter. The boot program prompts you interactively

Answer 2:
After Power on,
press,
STOP+A
at the ok prompt type,
ok>boot –a
Read More

2 :: Consider the following crontab entry: ?59 23 13 * 5 /wipe.disk? What time will this cronjob run?

That means: on Black Friday, your hard drive will get wiped out.

==> (on 13th and Friday) 23:59, /wipe.disk will be running________________________________________If the 13'th Day of the month is Friday, the job will run. (week day starts from Sunday day 1).
Read More

3 :: How can i disable STOP+A utility on SUN machines, which brings system into OK> prompt?

in /etc/system set abort_enable=0 will disable STOP-A ________________________________________There are several ways to disable "STOP-A"
(1)Edit the /etc/default/kbd file
KEYBOARD_ABORT=disable
(2)Use the "kbd -a disable" command
(3) Edit /etc/system file
set abort_enable = 0
Read More

4 :: How do we know how many LAN cards we have in server?

Just Type in the following command at prompt#ifconfig -a.That shall give the LAN Cards as well as total Physical and Logical IP Addresses
dmesg - It displays all configured items on systems.
Read More

5 :: What is "Piping" solaris?

piping:- sending the output of a command to the input of another is called piping.

some examples are:

$cal | wc

will output total line's,word's and character's

$cal | wc | wc

will output total line's,word's and character's

A unix pipe provides a one-way flow of data.


For example, if a Unix users issues the command
$who | sort |lpr
then the Unix shell would create three processes with two pipes between them:

A pipe can be explicitly created in Unix using the pipe system call. Two file descriptors are returned--fildes[0] and fildes[1], and they are both open for reading and writing. A read from fildes[0] accesses the data written to fildes[1] on a first-in-first-out (FIFO) basis and a read from fildes[1] accesses the data written to fildes[0] also on a FIFO basis.

When a pipe is used in a Unix command line, the first process is assumed to be writing to stdout and the second is assumed to be reading from stdin. So, it is common practice to assign the pipe write device descriptor to stdout in the first process and assign the pipe read device descriptor to stdin in the second process. This is elaborated below in the discussion of multiple command pipelines.
Read More

6 :: Where are the templates stored that are copied into the users home directories for their personal customizations?

/etc/skel
Read More

7 :: Which NFS daemons are found on the NFS server?

nfsd
mountd
lockd
statd
nfslogd

These five daemons will be in NFS server.

statd and lockd will be in NFS client too.
Read More

8 :: What SPARC emergency keyboard sequence will take the system to the ok prompt (forth monitor) but will send output to TTYA?

stop+A
Read More

9 :: What file controls system wide password aging?

/etc/shadow
Read More

10 :: Which of the following can be an appropriate name for a cluster?

SUNWadm
Read More

11 :: What flag used with patchadd will prevent a later back out by preventing patchadd from backing up files? If this flag is used, the patch cannot be removed.

You have to use the option "d" along with th patchadd commnad.
patchadd –d
Read More

12 :: What file do you put the umask setting in?

The UMASK value for bourne and korn shell users can be modified system wide by editing the "umask" entry in the "/etc/profile" file. To change the default UMASK for the C shell, modify the UMASK variable in "/etc/default/login" file.
Read More

13 :: When using the admintool, the membership list for groups is separated by what?

commas
Read More

14 :: Among the applications below, which one is not a client/server application?

cron
Read More

15 :: What command will display the VTOC for disk c0t0d0s0?

prtvtoc /dev/rdsk/c0t0d0s0
________________________________________
PRTVTOC
Read More

16 :: In order to save a template in /etc/format.dat, what two steps must occur?

name & save
Read More

17 :: What command enables a printer?

enable
Read More

18 :: Which of the following commands can tell you whether packets are being delayed or dropped on your network?

spray
Read More

19 :: What file contains the location of the namespace configuration textfiles such as hosts.rev, named.local, etc..?

/etc/named.conf
Read More

20 :: What file controls global variables for system wide values for the Bourne Shell?

/etc/profile
Read More

21 :: Partition sizes can be set manually or from what configuration?

/etc/format.dat
Read More

22 :: The hardware-level user interface that you see before the operating system has been started is called:

open boot
Read More

23 :: Give the command that will display your default boot device.

the command would be
eeprom boot-device & not printenv as suggested
Read More

24 :: How many different kill signals are there?

47
Read More

25 :: What software install group do you need to select in order to load the compilers?

Devloper
________________________________________
sunwcprog
Read More