Solaris General

  Home  OS Solaris  Solaris General


“Solaris General frequently Asked Questions in various Solaris General job Interviews by interviewer. The set of Solaris General interview questions here ensures that you offer a perfect answer to the interview questions posed to you. Get preparation of Solaris General job interview”



15 Solaris General Questions And Answers

1⟩ Suppose I have 20 GB free space in my file system but my inode size full. How will i increase or how will i fix this issue?

If you want to use the 20gb free space in that file system,

bring the system to single user mode and then take the

entire backup of that file system . Then format the file

system using newfs /dev/rdsk/c#t#d#s# after mount the file

system using mount command and restore the backup then you

can use the 20gb free space.

 171 views

4⟩ What is VTS?

VTS stands for Validation and Test Suite which is used to

run tests on any Sun Supported hardware and hardware

components and report the health status from which the

faulty devices ca be identified. In order to do this the VTS

package needs to be installed.

 154 views

8⟩ How to mount the FLOPPY & CD-ROM?

for CD-ROM-default mount point is /cdrom/cdrom0, ro for

read only

#mount -F hsfs -o ro <dev name> <mount point>

example:

#mount -F hsfs -o ro /dev/dsk/c0t1d0s0 /cdrom/cdrom0

for DVD-ROM-default mount point is /cdrom/cdrom0, ro for

read only

#mount -F udf -o ro <dev name> <mount point>

example:

#mount -F udf -o ro /dev/dsk/c0t1d0s0 /cdrom/cdrom0

for floppy-device name is /dev/diskette0

#mount -f pcfs <dev name> <mount point>

example:

#mount -F pcfs /dev/diskette0 /dir1

 139 views

9⟩ How many types of file system?

There are 3 types of file system -

A] Disk based file system (pcfs, ufs, udfs, hsfc)

B] Distributed file system (nfs, autofs, cachefs)

C] Pseudo files system (virtual file system, memory based

file system, swapfs, procfs, mntfs, dev, & tmpfs)

 165 views

14⟩ Explain the more details of vmstat output?

vmstat is tool used to check current memory utilisation

status.

it reports memory statistics of process,virtual memory,

disk,trap,and CPU activity.

Basic synctax is

vmstat <options> interval count

option include

paging -p , cache -c ,.interrupt -i

if no option specified then it will show info. about

process , memory , paging , disk ,interrupts & cpu

interval- is time between 2 successive output. it will

show / produce next ouput after specified time.

count- indicate how much ouput you want to see.

 156 views