nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

Linux Administrator Interview Questions

This is a discussion on Linux Administrator Interview Questions within the Linux software forums, part of the Linux Getting Started category; Hi , Can any one put the group of questions for the linux administrator interview question for 2- 3 exp ...


Go Back   nixCraft Linux Forum > Linux Getting Started > Linux software

Register FAQ Members List Calendar Forgotten your password? Mark Forums Read
  #1 (permalink)  
Old 12-04-2007, 05:20 PM
Junior Member
User
 
Join Date: Jun 2007
My distro: Debian
Posts: 15
Rep Power: 0
jhn_daz@yahoo.com is on a distinguished road
Post Linux Administrator Interview Questions

Hi ,

Can any one put the group of questions for the linux administrator interview question for 2- 3 exp . I know that can be available from google but if some linux expert ( Linux Guru ) Explain it with answers that will be a great help to upcoming linux administrators . like me ...

Thanks in advance ...

John
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-04-2007, 06:39 PM
rockdalinux's Avatar
Contributors
User
 
Join Date: May 2005
Location: Bangalore
My distro: RHEL, HP-UX, Solaris, FreeBSD, Ubuntu
Posts: 581
Rep Power: 7
rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough rockdalinux is a jewel in the rough
Default

Just a few I remember. This is not a full list but you should get idea. Following all are very basic question. I've short answer, for details read man page or use google.

What is the default Window system / Windows manager used in Linux?
Code:
X.org
What command is used to list the contents of directory?
Code:
ls 
ls -l
What command is used to list the top 10 files / directories size wise?
Code:
for X in $(du -s * | sort -nr | cut -f 2); do du -hs $X ; done
What command is used to display a list of currently running processes?
Code:
ps
top
pstree
pgrep
/proc file system
What is a login shell?
A program get executed when a user logs into UNIX box. E.g. bash, sh, ksh, csh

What is UID?
User identification number which is assigned to each UNIX / Linux user; it may or may not be unique (unique number is recommended to avoid security related issue. UID and user relationship defined in /etc/passswd file.
Code:
man id
man users
man groups

What GID? What is EUID? What SUID? What is RUID?
Linux > More on USER ID, Password, and Group management
Understanding /etc/passwd file format
Understanding /etc/ shadow file

Explain Unix User security concept
Permissions - chmod and chown
User groups - group management - user management
Read su, sudo man page

What PID?
Process identification number; use ps command to see PID. It is a number used by Unix kernels and Windows operating systems to identify a process.

Explain process ID zero and process ID 1?
All the idle task has process ID zero, and never exits.
The init process, with process ID 1, which does nothing but wait around for its child processes to die. Usually started for /etc/inittab

Explain wheel group usage along with an example?
Code:
man su
What command is used to check a file system for errors?
Code:
fsck
fsck.ext3
fsck.nfs
fsck.ext2
fsck.vfat
fsck.reiserfs
fsck.msdos
Is Linux / UNIX file system case sensitive? Give one example
Yes, test.txt and TEST.txt are two different files

What file contains the list of drives that are mounted at boot?
/etc/fstab - Linux / Other UNIX version
/etc/vfstab - Solaris UNIX

Explain the usage of the fourth field in /etc/fstab?
It is formatted as a comma separated list of options. Read mount command man page for all the option.

What is /etc/inittab file? In what file is the default run level defined?
System V init examines the '/etc/inittab' file for an 'initdefault' entry, which tells init whether there is a default runlevel. init is the program on Unix that spawns all other processes. It runs as a daemon and typically has PID 1.
Code:
man init
cat /etc/inittab
Common runlevle values on RHEL
Code:
    0. Halt
    1. Single user mode
    6. Reboot
    3. Default text
    5. Default GUI
To check the current runlevel:
Code:
who -r
runlevel
What command is used to get help about command? What command is used to read manual page for a given command?
Code:
info command-name
man command-name
command-name -h
command-name --help

What command form or symbol used to redirect output to a file?
Use the > symbol
Code:
command-name > output.txt
Use the < symbol to read input from a file

What is ssh? Specify ssh command syntax to execute command over a TCP/IP network?
SSH is Application layer protocol which allows data to be exchanged over a secure channel between two computers.
Sshh - Wikipedia, the free encyclopedia
Code:
ssh user@remote.box command-name
Explain steps for password less login? How do you set-up SSH with DSA / RSA public key authentication?
Howto Linux / UNIX setup SSH with DSA public key authentication (password less login)

Explain BSD-style init?
Read rc man page. There are no runlevels; the 'rc' file determines how init is to be run.
Runlevel - Wikipedia, the free encyclopedia

Explain Sys-V style init?
Read init man page
Runlevel - Wikipedia, the free encyclopedia

Explain Unix philosophy
Unix philosophy description by The Linux Information Project (LINFO)

What is POSIX? Name 2 POSIX-oriented operating systems?
Portable Operating System Interface is the collective name of a family of related standards specified by the IEEE to define the application programming interface (API). HP-UX, Solaris, AIX etc

Linux and BSD not certified as POSIX but conform to standard.

Explain Raw device and command s to configure Raw device
Block device file that allows accessing a storage device such as a hard drive directly. For example /dev/hda. Use commands
Code:
mknod
fdisk
mkfs
mkfs.ext3
Explain File descriptor
File descriptor - Wikipedia, the free encyclopedia

Explain Unix file types
Directory
Pipes
Fifo
Symbolic link
Named pipe
Socket
Device file
Door
Regular file

Explain inode, superblock and hard links
Understanding UNIX / Linux file system

Explain Unix domain socket
Unix Sockets
MySQL and many programs uses domain socket to make client / server communication. Usually fast as compare to TCP/IP

Explain UNIX software pipeline concept
See shell or bash man page
Code:
cat /etc/passwd | grep username
mount | grep cdrom
Explain XYZ Unix daemons
Where XYZ can be any one of the following:
Code:
init
httpd
dhcpd
lpd
nfsd
ntpd
syslogd
ypbind
ftpd
telnetd
sshd
named
Explain udev in Kernel 2.6?
udev - Wikipedia, the free encyclopedia

Explain Process management and related commands

Explain Memory management and related commands

What is Open Group standards?

Secify seciaal usage for each one of the following file
/dev/null - Send unwanted output
/dev/random - Random number generation
/dev/zero - Cache or Destroy data on a partition - dd if=/dev/zero of=/dev/sda98

Explain Linux Exec Shield
__________________
Rocky Jr.
You may have my body & soul, but you will never touch my pride!

If you have knowledge, let others light their candles at it.

Certified to work on HP-UX / Sun Solaris / RedHat
Reply With Quote
  #3 (permalink)  
Old 12-04-2007, 06:57 PM
sweta's Avatar
Contributors
User
 
Join Date: Feb 2005
Location: New Delhi
My distro: Suse, RHEL, Vista
Posts: 154
Rep Power: 4
sweta will become famous soon enough
Default

What is SELinux?

Write a command to find all of the files which have been accessed within the last 10 days.

What is LILO?

What is Grub?

Explain the difference between LILO and Grub

What is NFS?

What is NAMED?

What is MySQLD?

What is mysql?

What is CVS?

Why You Shouldn't Use the root Login for everyday work?

Describe the default partition scheme in Redhat Linux?

Describe the default partition scheme in Solaris? What is the slice number?

Describe all default mount point?

What is boot block?

What is logical block?

Describe the process for adding a new hard disk to UNIX box?

Describe the process for adding a new hard disk to Linux box?

Describe the process for adding a new hard disk to Linux LVM to grow /home?

Explain one major difference between a regular file system and a journaling file system?

Define JFS

Define UFS

How do you lock and unlock user account / password?

Describe RPM and command to install / remove / update Linux system?

Explain difference between rpm and up2date command.

Explain difference between rpm and apt-get command.

Explain difference between rpm and yum command.

Describe usage for pkgadd, pkginfo and pkgchk command

How do you find files on UNIX or Linux system?

Explain /etc/rc3.d

Explain ntsysv or chkconfig command

How do you get rid of process if kill PID is not working for you?

What is the purpose of the command?
grep
sed
awk
ifconfig
netstat
df
du
prtvtoc
fdisk -l
umaks
getfacl
setfacl
sudo
fsck
probe-scsi
vmstat

Explain LVM
__________________
Friends - v-nessa - missyAdmin - LinuxChix
Reply With Quote
  #4 (permalink)  
Old 07-14-2008, 12:12 AM
Junior Member
User
 
Join Date: Jul 2008
My distro: redhat
Posts: 1
Rep Power: 0
pradgp is on a distinguished road
Default Interview questions asked by Oracle,IBM,vitage ..

1) What is a superblock ?
2) What is a parity bit?
3) What is an inod?
4) Explain top command ?
5) How to disable the root login in SSH ?
6) use of sysctl command ?
7) LVM how to ?
Different RAID levels ?
Reply With Quote
  #5 (permalink)  
Old 08-19-2008, 10:53 AM
Junior Member
User
 
Join Date: Jul 2007
Location: Hyderabad
My distro: Redhat RHEL, Solaris
Posts: 29
Rep Power: 0
vaibhav.kanchan is on a distinguished road
Default Some more Interview questions.

What are the services required for nfs, apache(http) and NIS?

What is the best way to check the status of any service?

What do you mean by parity in RAID and which RAID is useful now a days?

Explain Linux Boot process especially kernel and initrd.

Why we do have two commands useradd and adduser when their functialnality is same?

Can we have two apache servers having diff versions?
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Real Interview Questions Ashish Pathak The Hangout 15 10-20-2008 11:54 PM
Sun Certified System Administrator for the Solaris 10 OS, Part I (CX-310-200) nkechifesie Solaris/OpenSolaris 8 02-18-2008 02:44 PM
VERITAS CLuster Server Interview questions Ashish Pathak The Hangout 1 11-18-2007 09:29 AM
Important questins for tech support interview. Yogesh Linux software 3 12-04-2006 10:09 AM
couple of noob questions sparky Shell scripting 8 04-09-2006 05:22 PM


All times are GMT +5.5. The time now is 12:22 AM.


Powered by vBulletin® Version 3.7.4 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36