#1
What is the root directory in Linux?
/
ExplanationRoot directory is the top-level directory in the Linux filesystem hierarchy.
#2
Which command is used to display the current directory in Linux?
pwd
Explanationpwd stands for 'print working directory' and displays the current directory path.
#3
Which command is used to create a new directory in Linux?
mkdir
Explanationmkdir stands for 'make directory' and is used to create new directories.
#4
What is the purpose of the /usr directory in Linux?
Stores user-related programs and data
ExplanationThe /usr directory contains user-specific programs, libraries, documentation, and binaries.
#5
Which command is used to remove a directory in Linux?
rmdir
Explanationrmdir is used to remove empty directories in Linux.
#6
What is the purpose of the /sbin directory in Linux?
Stores binary files for system administration
ExplanationThe /sbin directory holds binary executables used for system administration tasks.
#7
What is the purpose of the /tmp directory in Linux?
Stores temporary files
ExplanationThe /tmp directory is used to store temporary files by programs.
#8
What is the purpose of the /bin directory in Linux?
Stores binary files
ExplanationThe /bin directory holds essential binary executables used by users and system administrators.
#9
What does the 'chmod 755 file.txt' command do in Linux?
Changes the permissions of file.txt to read, write, and execute for the owner, and read and execute for others
Explanationchmod command is used to change the permissions of files or directories.
#10
What does the command 'ls -l' display in Linux?
Long listing format of files and directories
Explanationls is used to list files and directories, -l option displays detailed information in a long listing format.
#11
Which file in the /etc directory contains user account information in Linux?
passwd
ExplanationThe passwd file contains user account information such as usernames and password hashes.
#12
Which command is used to change the owner of a file in Linux?
chown
Explanationchown command is used to change the owner of files or directories in Linux.
#13
What does the command 'grep' do in Linux?
Search for patterns in files
Explanationgrep command is used to search for patterns or specific text within files.
#14
What does the command 'df -h' display in Linux?
Disk space usage in a human-readable format
Explanationdf is used to display disk space usage, -h option provides human-readable output.
#15
What is the purpose of the /etc directory in Linux?
Contains system configuration files
ExplanationThe /etc directory stores configuration files required by various programs and services.
#16
What is the purpose of the /dev directory in Linux?
Stores device files
ExplanationThe /dev directory contains device files representing physical and virtual devices.
#17
What is the purpose of the /opt directory in Linux?
Stores optional add-on software
ExplanationThe /opt directory is used to store optional or add-on software packages.
#18
What is the purpose of the /proc directory in Linux?
Virtual filesystem providing system information
ExplanationThe /proc directory is a virtual filesystem that provides information about processes and system configuration.
#19
What is the purpose of the /run directory in Linux?
Contains system runtime data
ExplanationThe /run directory holds system runtime data, including information about currently running processes.