SlideShare a Scribd company logo
1 of 16
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
What is Linux
Linux is, in simplest terms, an operating system. It is the
software on a computer that enables applications and the
computer operator to access the devices on the computer to
perform desired functions
What is LILO?
LILO stands for Linux Loader. LILO is Linux's boot loader
which is used to boot up Linux. It can also be used to dual-boot
or multi-boot different operating systems.
INSTALLATION
Which account is created when you install Linux?
Super user account or the root user account
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
KERNEL
What is kernel ?
The core of the Linux system is the kernel. The kernel controls
all of the hardware and software on the computer system,
allocating hardware when necessary, and executing software
when required.
What is Netfilter?
The Linux kernel’s network packet processing subsystem is called
Netfilter
What is notification chains?
The kernel’s many subsystems are heavily interdependent, so an
event detected or generated by one of them could be of interest to
others. To fulfill the need for interaction, Linux uses so-called
notification chains
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
LVM
What do you mean by LVM?
Logical Volume Manager(LVM ) allows administrators the
flexibility to create logical disks that can be expanded
dynamically as more disk space is required
How to see the logical volume and its sizes?
# lvs
How to remove the LVM?
# umount /dev/vg_name/lv_name
# lvremove /dev/vg_name/lv_name
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
PARTED
How can you display the information about disk drive?
# parted
How can you l check free space on drive /dev/sda with
parted
command?
#parted /dev/sda
What is the use of parted command?
Add the partition
View and change the existing partition
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
FILE SYSTEM
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What you mean by linux filesystem?
The file system is divided into many parts; the filesystem with /bin , /lib ,
/etc , /dev , and a few others; a /usr file system with programs and
unchanging data; /var filesystem with changing data
How to identified the files accessed within 25 days?
# find / -type f -atime -25 > file_name.files
How to find out which file system running on your linux server
currently?
# df
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
USER & SECURITY
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What is user?
Linux is provided by users and groups. Each user is associated with a
unique positive integer called the user ID (uid). During login, the user
provides a username and password to the login program
How to create a user?
# adduser user_name
# useradd user_name
How to set to expire the particular user account?
# chage -E 30/12/2016 user_name
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
DNS
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What is DNS?
Domain N ame System (DN S) is the system that associates
hostnames with IP addresses
What does BIND Stands for ?
BIND stands for Berkeley Internet Name Domain
What is the role of DNS ?
A DNS server, or name server, is used to resolve an IP address to
a hostname
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
TCP / IP NETWORKING
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What is TCP?
TCP is a connection - oriented communication protocol. It maintains
the state of the connection at any given point of time
What is IP header?
The IP header has fixed as well as optional fields. The fixed header
is 20 bytes long and the rest is optional
How the packet filtered within the ipchain?
Ip chains filter incoming, outgoing, and the forwarded packets
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
IPTABLES & FIREWALL
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What Is Firewall?
A firewall is a hardened and trusted host that acts as a choke
point among a group of networks
What is iptables?
Iptables is a generic table structure that defines rules and commands
as part of the netfilter framework that facilitates Network Address
Translation (NAT), packet filtering, and packet mangling in the Linux
What Is IP Filtering?
IP filtering is simply a mechanism that decides which types of IP
packets will be processed normally and which will be dropped or
rejected
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
RAID
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What is RAID?
RAID means Redundant Array of Independent Disks configuration to
further protect against multiple failures
Does Linux Support Virtualized File Systems Like RAID?
The most recent Linux kernels support software RAID, and they will work
with RAID disk controllers
What is software RAID?
Software RAID means that an array is managed by the kernel, rather
than by specialized hardware
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
BACKUP & RECOVERY
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What is backup?
Backing up, refers to the copying and archiving of computer data so it
may be used to restore the original after a loss event
Why we need backup?
Backups are needed in case a file or a group of files is lost. The reasons
for losing files include . Hardware failure like disk breaking, accidentally
deleting wrong file and computer being stolen. Backups help in all the
above situations.
What is simple backup?
The simplest means of making a backup is to use tar to archive all the
files on the system or only those files in a set of specific directories
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
VCS
and the RAM is full, inactive pages in memory are moved to the swap space.
Which partition is used for virtual memory by a Linux system?
swap
How to check the swap space?
free -m
What you mean by VCS?
Veritas Cluster Server also known as VCS is a High-availability
cluster software, for Unix, Linux and Microsoft Windows computer
systems
What is the use of VCS Simulator?
VCS Simulator enables you to simulate and test cluster configurations.
Use VCS Simulator to view and modify service group and resource
configurations and test failover behavior.
How to check the status of VCS?
# hastatus –summ
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
APACHE
What is apache server?
The Apache HTTP Server, colloquially called Apache is the world's
most used web server software
How to check the version of Apache server ?
rpm -qa |grep httpd
What is the main configuration file for Apache?
httpd.conf
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
RPM
What is ftp?
The File Transfer Protocol (FTP) is a standard network
protocol used to transfer computer files from one host to
another host over a TCP-based network, such as
the Internet.
What does vsftpd stands for?
Vsftpd means very secure FTP daemon
What all are the default port for vsftpd server?
Port numbers 20 & 21
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers
SAMBA
What is Samba?
Samba is a suite of Unix applications that speak the SMB
(Server Message Block) protocol. Many operating systems
What is SWAT?
Samba Web Administration Tool (SWAT) is used to simplify
administration and configuration of Samba
How to install samba?
# yum -y install samba
Linux Administration
For more details :- http://raju-linux-admin.blogspot.in
Interview Questions and Answers

More Related Content

What's hot

Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)
Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)
Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)Chinthaka Deshapriya (RHCA)
 
The Basic Introduction of Open vSwitch
The Basic Introduction of Open vSwitchThe Basic Introduction of Open vSwitch
The Basic Introduction of Open vSwitchTe-Yen Liu
 
VirtualBox networking explained
VirtualBox networking explainedVirtualBox networking explained
VirtualBox networking explainedMaarten Smeets
 
Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Novell
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanismsDuressa Teshome
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course Ali Abdo
 
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...Edureka!
 
Frappé Framework - A Full Stack Web Framework
Frappé Framework - A Full Stack Web FrameworkFrappé Framework - A Full Stack Web Framework
Frappé Framework - A Full Stack Web Frameworkrushabh_mehta
 
How VXLAN works on Linux
How VXLAN works on LinuxHow VXLAN works on Linux
How VXLAN works on LinuxEtsuji Nakai
 
OverlayFS as a Docker Storage Driver
OverlayFS as a Docker Storage DriverOverlayFS as a Docker Storage Driver
OverlayFS as a Docker Storage DriverTomoya Akase
 
Managing ESXi - Tools and Techniques
Managing ESXi - Tools and TechniquesManaging ESXi - Tools and Techniques
Managing ESXi - Tools and TechniquesChristopher Janoch
 
Docker storage drivers by Jérôme Petazzoni
Docker storage drivers by Jérôme PetazzoniDocker storage drivers by Jérôme Petazzoni
Docker storage drivers by Jérôme PetazzoniDocker, Inc.
 
Linux Troubleshooting
Linux TroubleshootingLinux Troubleshooting
Linux TroubleshootingKeith Wright
 
Qemu device prototyping
Qemu device prototypingQemu device prototyping
Qemu device prototypingYan Vugenfirer
 
DMA Survival Guide
DMA Survival GuideDMA Survival Guide
DMA Survival GuideKernel TLV
 
Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Neeraj Shrimali
 
Windows Server 2012
Windows Server 2012Windows Server 2012
Windows Server 2012anilinvns
 

What's hot (20)

Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)
Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)
Sa1 chapter-5-managing-local-linux-users-and-groups-v2 (4)
 
The Basic Introduction of Open vSwitch
The Basic Introduction of Open vSwitchThe Basic Introduction of Open vSwitch
The Basic Introduction of Open vSwitch
 
VirtualBox networking explained
VirtualBox networking explainedVirtualBox networking explained
VirtualBox networking explained
 
Server virtualization
Server virtualizationServer virtualization
Server virtualization
 
Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)Virtualization with KVM (Kernel-based Virtual Machine)
Virtualization with KVM (Kernel-based Virtual Machine)
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanisms
 
Red Hat Certified engineer course
  Red Hat Certified engineer course   Red Hat Certified engineer course
Red Hat Certified engineer course
 
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...
Linux Interview Questions And Answers | Linux Administration Tutorial | Linux...
 
Linux Kernel I/O Schedulers
Linux Kernel I/O SchedulersLinux Kernel I/O Schedulers
Linux Kernel I/O Schedulers
 
Frappé Framework - A Full Stack Web Framework
Frappé Framework - A Full Stack Web FrameworkFrappé Framework - A Full Stack Web Framework
Frappé Framework - A Full Stack Web Framework
 
How VXLAN works on Linux
How VXLAN works on LinuxHow VXLAN works on Linux
How VXLAN works on Linux
 
OverlayFS as a Docker Storage Driver
OverlayFS as a Docker Storage DriverOverlayFS as a Docker Storage Driver
OverlayFS as a Docker Storage Driver
 
Managing ESXi - Tools and Techniques
Managing ESXi - Tools and TechniquesManaging ESXi - Tools and Techniques
Managing ESXi - Tools and Techniques
 
Docker storage drivers by Jérôme Petazzoni
Docker storage drivers by Jérôme PetazzoniDocker storage drivers by Jérôme Petazzoni
Docker storage drivers by Jérôme Petazzoni
 
Linux Troubleshooting
Linux TroubleshootingLinux Troubleshooting
Linux Troubleshooting
 
Qemu device prototyping
Qemu device prototypingQemu device prototyping
Qemu device prototyping
 
DMA Survival Guide
DMA Survival GuideDMA Survival Guide
DMA Survival Guide
 
Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup. Linux container, namespaces & CGroup.
Linux container, namespaces & CGroup.
 
The kvm virtualization way
The kvm virtualization wayThe kvm virtualization way
The kvm virtualization way
 
Windows Server 2012
Windows Server 2012Windows Server 2012
Windows Server 2012
 

Viewers also liked

linux interview questions and answers
linux interview questions and answerslinux interview questions and answers
linux interview questions and answersGanapathi Raju
 
Linux server world
Linux server worldLinux server world
Linux server worldAkshat Singh
 
Top 8 linux system administrator resume samples
Top 8 linux system administrator resume samplesTop 8 linux system administrator resume samples
Top 8 linux system administrator resume sampleskefujom
 
Top 100 Linux Interview Questions and Answers 2014
Top 100 Linux Interview Questions and Answers 2014Top 100 Linux Interview Questions and Answers 2014
Top 100 Linux Interview Questions and Answers 2014iimjobs and hirist
 
System administrator resume format
System administrator resume formatSystem administrator resume format
System administrator resume formatAmbuj Rai
 

Viewers also liked (8)

linux interview questions and answers
linux interview questions and answerslinux interview questions and answers
linux interview questions and answers
 
Linux server world
Linux server worldLinux server world
Linux server world
 
Linux admin
Linux adminLinux admin
Linux admin
 
Resume
ResumeResume
Resume
 
Top 8 linux system administrator resume samples
Top 8 linux system administrator resume samplesTop 8 linux system administrator resume samples
Top 8 linux system administrator resume samples
 
My Resume
My ResumeMy Resume
My Resume
 
Top 100 Linux Interview Questions and Answers 2014
Top 100 Linux Interview Questions and Answers 2014Top 100 Linux Interview Questions and Answers 2014
Top 100 Linux Interview Questions and Answers 2014
 
System administrator resume format
System administrator resume formatSystem administrator resume format
System administrator resume format
 

Similar to Linux interview questions and answers

Desktop interview qestions & answer
Desktop interview qestions & answerDesktop interview qestions & answer
Desktop interview qestions & answermandarshetye45
 
Lamp technology
Lamp technologyLamp technology
Lamp technology2tharan21
 
Server interview[1]
Server interview[1]Server interview[1]
Server interview[1]sourav nanda
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lampNadhi ya
 
Lecture 4 -_internet_infrastructure_2_updated_2011
Lecture 4 -_internet_infrastructure_2_updated_2011Lecture 4 -_internet_infrastructure_2_updated_2011
Lecture 4 -_internet_infrastructure_2_updated_2011Serious_SamSoul
 
Presentation on samba server & apache server
Presentation on samba server & apache serverPresentation on samba server & apache server
Presentation on samba server & apache serverManoz Kumar
 
It04 roshan basnet
It04 roshan basnetIt04 roshan basnet
It04 roshan basnetrosu555
 
Jetking questions and answers 8.5x11
Jetking   questions and answers 8.5x11Jetking   questions and answers 8.5x11
Jetking questions and answers 8.5x11sunil kumar
 
lamp technology
lamp technologylamp technology
lamp technologyDeepa
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa
 
Building Linux IPv6 DNS Server (Complete Soft Copy)
Building Linux IPv6 DNS Server (Complete Soft Copy)Building Linux IPv6 DNS Server (Complete Soft Copy)
Building Linux IPv6 DNS Server (Complete Soft Copy)Hari
 
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh Khương
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh KhươngKiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh Khương
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh KhươngLac Viet Computing Corporation
 
70-410 Practice Test
70-410 Practice Test70-410 Practice Test
70-410 Practice Testwrailebo
 

Similar to Linux interview questions and answers (20)

Desktop interview qestions & answer
Desktop interview qestions & answerDesktop interview qestions & answer
Desktop interview qestions & answer
 
Lamp
LampLamp
Lamp
 
Lamp technology
Lamp technologyLamp technology
Lamp technology
 
Server interview[1]
Server interview[1]Server interview[1]
Server interview[1]
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lamp
 
Lecture 4 -_internet_infrastructure_2_updated_2011
Lecture 4 -_internet_infrastructure_2_updated_2011Lecture 4 -_internet_infrastructure_2_updated_2011
Lecture 4 -_internet_infrastructure_2_updated_2011
 
Presentation on samba server & apache server
Presentation on samba server & apache serverPresentation on samba server & apache server
Presentation on samba server & apache server
 
It04 roshan basnet
It04 roshan basnetIt04 roshan basnet
It04 roshan basnet
 
Jetking questions and answers 8.5x11
Jetking   questions and answers 8.5x11Jetking   questions and answers 8.5x11
Jetking questions and answers 8.5x11
 
test
testtest
test
 
HeartBeat
HeartBeatHeartBeat
HeartBeat
 
Resume
ResumeResume
Resume
 
lamp technology
lamp technologylamp technology
lamp technology
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
 
Linux and DNS Server
Linux and DNS ServerLinux and DNS Server
Linux and DNS Server
 
HIGH AVAILABLE CLUSTER IN WEB SERVER WITH HEARTBEAT + DRBD + OCFS2
HIGH AVAILABLE CLUSTER IN WEB SERVER WITH  HEARTBEAT + DRBD + OCFS2HIGH AVAILABLE CLUSTER IN WEB SERVER WITH  HEARTBEAT + DRBD + OCFS2
HIGH AVAILABLE CLUSTER IN WEB SERVER WITH HEARTBEAT + DRBD + OCFS2
 
Building Linux IPv6 DNS Server (Complete Soft Copy)
Building Linux IPv6 DNS Server (Complete Soft Copy)Building Linux IPv6 DNS Server (Complete Soft Copy)
Building Linux IPv6 DNS Server (Complete Soft Copy)
 
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh Khương
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh KhươngKiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh Khương
Kiến trúc mạng cho hệ thống VDI - Mr Nguyễn Phạm Vĩnh Khương
 
70-410 Practice Test
70-410 Practice Test70-410 Practice Test
70-410 Practice Test
 
Open Source in the Enterprise
Open Source in the EnterpriseOpen Source in the Enterprise
Open Source in the Enterprise
 

Recently uploaded

VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...Suhani Kapoor
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsNiya Khan
 
Gray Gold Clean CV Resume2024tod (1).pdf
Gray Gold Clean CV Resume2024tod (1).pdfGray Gold Clean CV Resume2024tod (1).pdf
Gray Gold Clean CV Resume2024tod (1).pdfpadillaangelina0023
 
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一lvtagr7
 
PM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterPM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterHector Del Castillo, CPM, CPMM
 
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士obuhobo
 
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607dollysharma2066
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...Suhani Kapoor
 
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...Suhani Kapoor
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证obuhobo
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Madekojalkojal131
 
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...gurkirankumar98700
 
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样umasea
 
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
Call Girl in Low Price Delhi Punjabi Bagh  9711199012Call Girl in Low Price Delhi Punjabi Bagh  9711199012
Call Girl in Low Price Delhi Punjabi Bagh 9711199012sapnasaifi408
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...Suhani Kapoor
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testspriyanshukumar97908
 
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一Fs sss
 

Recently uploaded (20)

VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
 
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call GirlsSonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
Sonam +91-9537192988-Mind-blowing skills and techniques of Ahmedabad Call Girls
 
Gray Gold Clean CV Resume2024tod (1).pdf
Gray Gold Clean CV Resume2024tod (1).pdfGray Gold Clean CV Resume2024tod (1).pdf
Gray Gold Clean CV Resume2024tod (1).pdf
 
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一
定制(UQ毕业证书)澳洲昆士兰大学毕业证成绩单原版一比一
 
PM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring ChapterPM Job Search Council Info Session - PMI Silver Spring Chapter
PM Job Search Council Info Session - PMI Silver Spring Chapter
 
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
内布拉斯加大学林肯分校毕业证录取书( 退学 )学位证书硕士
 
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
 
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCeCall Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
Call Girls In Prashant Vihar꧁❤ 🔝 9953056974🔝❤꧂ Escort ServiCe
 
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
 
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
女王大学硕士毕业证成绩单(加急办理)认证海外毕业证
 
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service BhilaiVIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
VIP Call Girl Bhilai Aashi 8250192130 Independent Escort Service Bhilai
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
 
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...
(Call Girls) in Lucknow Real photos of Female Escorts 👩🏼‍❤️‍💋‍👩🏻 8923113531 ➝...
 
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
 
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Gautam Nagar (Delhi) Call Us 9953056974
 
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
Call Girl in Low Price Delhi Punjabi Bagh  9711199012Call Girl in Low Price Delhi Punjabi Bagh  9711199012
Call Girl in Low Price Delhi Punjabi Bagh 9711199012
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
 
Notes of bca Question paper for exams and tests
Notes of bca Question paper for exams and testsNotes of bca Question paper for exams and tests
Notes of bca Question paper for exams and tests
 
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一 定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
定制(UOIT学位证)加拿大安大略理工大学毕业证成绩单原版一比一
 

Linux interview questions and answers

  • 1. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers What is Linux Linux is, in simplest terms, an operating system. It is the software on a computer that enables applications and the computer operator to access the devices on the computer to perform desired functions What is LILO? LILO stands for Linux Loader. LILO is Linux's boot loader which is used to boot up Linux. It can also be used to dual-boot or multi-boot different operating systems. INSTALLATION Which account is created when you install Linux? Super user account or the root user account
  • 2. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers KERNEL What is kernel ? The core of the Linux system is the kernel. The kernel controls all of the hardware and software on the computer system, allocating hardware when necessary, and executing software when required. What is Netfilter? The Linux kernel’s network packet processing subsystem is called Netfilter What is notification chains? The kernel’s many subsystems are heavily interdependent, so an event detected or generated by one of them could be of interest to others. To fulfill the need for interaction, Linux uses so-called notification chains
  • 3. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers LVM What do you mean by LVM? Logical Volume Manager(LVM ) allows administrators the flexibility to create logical disks that can be expanded dynamically as more disk space is required How to see the logical volume and its sizes? # lvs How to remove the LVM? # umount /dev/vg_name/lv_name # lvremove /dev/vg_name/lv_name
  • 4. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers PARTED How can you display the information about disk drive? # parted How can you l check free space on drive /dev/sda with parted command? #parted /dev/sda What is the use of parted command? Add the partition View and change the existing partition
  • 5. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers FILE SYSTEM and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What you mean by linux filesystem? The file system is divided into many parts; the filesystem with /bin , /lib , /etc , /dev , and a few others; a /usr file system with programs and unchanging data; /var filesystem with changing data How to identified the files accessed within 25 days? # find / -type f -atime -25 > file_name.files How to find out which file system running on your linux server currently? # df
  • 6. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers USER & SECURITY and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What is user? Linux is provided by users and groups. Each user is associated with a unique positive integer called the user ID (uid). During login, the user provides a username and password to the login program How to create a user? # adduser user_name # useradd user_name How to set to expire the particular user account? # chage -E 30/12/2016 user_name
  • 7. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers DNS and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What is DNS? Domain N ame System (DN S) is the system that associates hostnames with IP addresses What does BIND Stands for ? BIND stands for Berkeley Internet Name Domain What is the role of DNS ? A DNS server, or name server, is used to resolve an IP address to a hostname
  • 8. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers TCP / IP NETWORKING and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What is TCP? TCP is a connection - oriented communication protocol. It maintains the state of the connection at any given point of time What is IP header? The IP header has fixed as well as optional fields. The fixed header is 20 bytes long and the rest is optional How the packet filtered within the ipchain? Ip chains filter incoming, outgoing, and the forwarded packets
  • 9. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers IPTABLES & FIREWALL and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What Is Firewall? A firewall is a hardened and trusted host that acts as a choke point among a group of networks What is iptables? Iptables is a generic table structure that defines rules and commands as part of the netfilter framework that facilitates Network Address Translation (NAT), packet filtering, and packet mangling in the Linux What Is IP Filtering? IP filtering is simply a mechanism that decides which types of IP packets will be processed normally and which will be dropped or rejected
  • 10. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers RAID and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What is RAID? RAID means Redundant Array of Independent Disks configuration to further protect against multiple failures Does Linux Support Virtualized File Systems Like RAID? The most recent Linux kernels support software RAID, and they will work with RAID disk controllers What is software RAID? Software RAID means that an array is managed by the kernel, rather than by specialized hardware
  • 11. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers BACKUP & RECOVERY and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What is backup? Backing up, refers to the copying and archiving of computer data so it may be used to restore the original after a loss event Why we need backup? Backups are needed in case a file or a group of files is lost. The reasons for losing files include . Hardware failure like disk breaking, accidentally deleting wrong file and computer being stolen. Backups help in all the above situations. What is simple backup? The simplest means of making a backup is to use tar to archive all the files on the system or only those files in a set of specific directories
  • 12. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers VCS and the RAM is full, inactive pages in memory are moved to the swap space. Which partition is used for virtual memory by a Linux system? swap How to check the swap space? free -m What you mean by VCS? Veritas Cluster Server also known as VCS is a High-availability cluster software, for Unix, Linux and Microsoft Windows computer systems What is the use of VCS Simulator? VCS Simulator enables you to simulate and test cluster configurations. Use VCS Simulator to view and modify service group and resource configurations and test failover behavior. How to check the status of VCS? # hastatus –summ
  • 13. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers APACHE What is apache server? The Apache HTTP Server, colloquially called Apache is the world's most used web server software How to check the version of Apache server ? rpm -qa |grep httpd What is the main configuration file for Apache? httpd.conf
  • 14. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers RPM What is ftp? The File Transfer Protocol (FTP) is a standard network protocol used to transfer computer files from one host to another host over a TCP-based network, such as the Internet. What does vsftpd stands for? Vsftpd means very secure FTP daemon What all are the default port for vsftpd server? Port numbers 20 & 21
  • 15. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers SAMBA What is Samba? Samba is a suite of Unix applications that speak the SMB (Server Message Block) protocol. Many operating systems What is SWAT? Samba Web Administration Tool (SWAT) is used to simplify administration and configuration of Samba How to install samba? # yum -y install samba
  • 16. Linux Administration For more details :- http://raju-linux-admin.blogspot.in Interview Questions and Answers