Linux Interview Questions and Answers

1) What is ‘inode’? Ans: All UNIX files have its description stored in a structure called ‘inode’. The inode contains info about the file-size, its location, time of last access, time of last modification, permission and so on. Directories are also represented as files and have an associated inode.
2) What are the process states in UNIX? Ans: As a process executes it changes state according to its circumstances. Unix processes have the following states: Running: The process is either running or it is ready to run . Waiting: The process is waiting for an event or for a resource. Stopped: The process has been stopped, usually by receiving a signal. Zombie: The processes are dead but have not been removed from the process table.
3) What command should you use to check the number of files and disk space used and each user’s defined quotas? Ans: repquota.
4) What command is used to remove the password assigned to a group? Ans: gpasswd –r
5) What can you type at a command line to determine which shell you are using? Ans: echo $SHELL
6) Write a command to find all of the files which have been accessed within the last 30 days. Ans: find / -type f -atime -30 > filename.txt
7) What is a zombie? Ans: Zombie is a process state when the child dies before the parent process. In this case the structural information of the process is still in the process table.
8) What daemon is responsible for tracking events on your system? Ans: syslogd.
9) What do you mean a File System? Ans: File System is a method to store and organize files and directories on disk. A file system can have 2 different formats called file system types. These formats determine how the information is stored as files and directories.
10) Tell me the name of directory structure hierarchy for Linux Ans: /root /boot /bin /sbin /proc /mnt /usr /var /lib /etc /dev /opt /srv /tmp /media.
11) What does /boot directory contains? Ans: The /boot/ directory contains static files required to boot the system, such as the Linux kernel, boot loader configuration files. These files are essential for the system to boot properly.
12) If someone deletes /boot directory from your server, than what will happen? Ans: In that case your server will be in unbootable state. Your Server can’t boot without /boot directory because this directory contains all bootable files
13) What does /dev directory contain? Ans:The /dev directory contains all device files that are attached to system or virtual device files that are provided by the kernel.
14) What is the role of udev daemon? Ans: The udev demon used to create and remove all these device nodes or files in /dev/ directory.
15) What kind of files or nodes /dev/ directory contains and how do I access or see device files? Ans: Block Device Files:- Block device files talks to devices block by block [1 block at a time (1 block = 512 bytes to 32KB)]. Examples: – USB disk, CDROM, Hard Disk # ls /dev/sd* brw-rw—- 1 root root 8,0 Mar 15 2009 sda brw-rw—- 1 root root 8,1 Mar 15 2009 sda1 brw-rw—- 1 root root 8,2 Mar 15 2009 sda2 brw-rw—- 1 root root 8, 3 Mar 15 2009 sda3 brw-rw—- 1 root root 8, 4 Mar 15 2009 sda4 brw-rw—- 1 root root 8, 16 Mar 15 2009 sdb Character Device Files:- Character device files talk to devices character by character. Examples: – Virtual terminals, terminals, serial modems, random numbers #ls /dev/tty* crw-rw—- 1 root root 4, 64 Mar 15 2009 ttyS0 crw-rw—- 1 root root 4,65 Mar 15 2009 ttyS1 crw-rw—- 1 root root 4,66 Mar 15 2009 ttyS2 crw-rw—- 1 root root 4,67 Mar 15 2009 ttyS3
16) Tell me the name of device file for PS/2 mouse connection. Ans: /dev/psaux
17) Tell me the name of device file for parallel port (Printers). Ans: /dev/lp0
18) What does /etc/X11/ directory contains? Ans: The /etc/X11/ directory is for X Window System configuration files, such asxorg.conf.
19) What does /etc/skell directory contains? Ans: The /etc/skel directory contains files and directories that are automatically copied over to a new user’s home directory when such user is created by the useradd or adduser command.
20) Tell me name of Linux File systems? Ans: Ext2 Ext3 Ext4
21) What is the difference between ext2 and ext3 file systems? Ans: The ext3 file system is an enhanced version of the ext2 file system. The most important difference between Ext2 and Ext3 is that Ext3 supports journaling. After an unexpected power failure or system crash (also called an unclean system shutdown), each mounted ext2 file system on the machine must be checked for consistency by the e2fsck program. This is a time-consuming process and during this time, any data on the volumes is unreachable. The journaling provided by the ext3 file system means that this sort of file system check is no longer necessary after an unclean system shutdown. The only time a consistency check occurs using ext3 is in certain rare hardware failure cases, such as hard drive failures. The time to recover an ext3 file system after an unclean system shutdown does not depend on the size of the file system or the number of files; rather, it depends on the size of the journal used to maintain consistency. The default journal size takes about a second to recover, depending on the speed of the hardware.
22) Any idea about ext4 file system? Ans: The ext4 or fourth extended filesystem is a journaling file system developed as the successor to ext3. Ext4 filesystem released as a functionally complete and stable filesystem in Linux with kernel version 2.6.28. Features of ext4 file system:- 1. Currently, Ext3 supports 16 TB of maximum file system size and 2 TB of maximum file size. Ext4 have 1 EB of maximum file system size and 16 TB of maximum file size. [An EB or exabyte is 1018 bytes or 1,048,576 TB] 2. Fast fsck check than ext3 3 In Ext4 the journaling feature can be disabled, which provides a small performance improvement. 4. Online defragmentation. 5. Delayed allocation Ext4 uses a filesystem performance technique called allocate-on-flush, also known as delayed allocation. It consists of delaying block allocation until the data is going to be written to the disk, unlike some other file systems, which may allocate the necessary blocks before that step.
23) How we create ext3 file system on /dev/sda7 disk? Ans: # mkfs –j /dev/sda7.
24) Can we convert ext2 filesystem to ext3 file system? Ans: Yes, we can convert ext2 to ext3 file system by tune2fs command. tune2fs –j /dev/
25) How we will create ext4 file system? # Ans: mke2fs -t ext4 /dev/DEV
26) Explain /proc filesystem? Ans: /proc is a virtual filesystem that provides detailed information about Linux kernel, hardware’s and running processes. Files under /proc directory named as Virtual files. Because /proc contains virtual files that’s why it is called virtual file system. These virtual files have unique qualities. Most of them are listed as zero bytes in size. Virtual files such as /proc/interrupts, /proc/meminfo, /proc/mounts, and /proc/partitions provide an up-to-the-moment glimpse of the system’s hardware. Others, like the /proc/filesystems file and the /proc/sys/ directory provide system configuration information and interfaces.
Nitesh

Nitesh

Author

Bonjour. A curious dreamer enchanted by various languages, I write towards making technology seem fun here at Asha24.