Linux Quiz Contest | National Level Quiz Competition on Linux Commands | Linux Operating System | Basic Linux Commands List | Linux Command Interview Questions | Fundamentals Of Linux
About Linux Quiz Competition
Internal Quality Assurance Cell (IQAC)and Department of Information Technology from Thakur Shyamnarayan Degree College (TSDC) announced to conduct National Quiz Competition Virtually/Online on Linux Commands.
Here, In this Linux Quiz, you will get Multiple Choice Questions/Objective-Based Questions on Linux Commands. It’ll check your fundamentals of Linux operating system.
This test examines the various Linux commands and techniques generally used by system administrators and the end users to manage their day-to-day work in a Linux environment. It is created for users who’ve limited exposure to Linux, whether they are working or freshly passed out engineers.
And if you will score well, then you will get Free Linux Certificate from Thakur Shyamnarayan Degree College (TSDC).
What Is a Linux Command?

A programme or utility that runs on the command line is known as a Linux command. A command line is a user interface that receives lines of text and converts them into computer commands.
Any graphical user interface (GUI) is nothing more than a graphical representation of command-line programmes. When you shut a window by clicking the “X,” for example, there’s a command running behind the scenes.
A flag is a means for us to provide the command you’re running alternatives. The -h flag can be used to access the help page for most Linux commands. The majority of the time, flags aren’t required.
An argument, also known as a parameter, is the information we provide to a command in order for it to function properly. The argument is often a file path, although it might be anything you put in the terminal.
Linux is used to power the majority of the world’s supercomputers, Internet servers, hardware security modules (HSM) that secure financial data, and a billion other Android devices. In a nutshell, Linux is present everywhere. It includes a variety of architectures, from mainframes to high-end servers to desktops and embedded hardware.
Some Basic Linux Commands : Used In Day-To-Day Life
1. pwd Command
The pwd command is used to display the location of the current working directory.
pwd
2. mkdir Command
The mkdir command is used to create a new directory under any directory.
mkdir <directory name>
3. rmdir Command
The rmdir command is used to delete a directory.
rmdir <directory name>
4. ls Command
The ls command is used to display a list of content of a directory.
ls
5. cd Command
The cd command is used to change the current directory.
cd <directory name>
6. touch Command
The touch command is used to create empty files. We can create multiple empty files by executing it once.
touch <file name>
touch <file1> <file2> ….
7. rm Command
The rm command is used to remove a file.
Syntax:
rm <file name>
8. cp Command
The cp command is used to copy a file or directory.
Syntax:
To copy in the same directory:
cp <existing file name> <new file name>
9. mv Command
The mv command is used to move a file or a directory form one location to another location.
mv <file name> <directory path>
11. rename Command
The rename command is used to rename files. It is useful for renaming a large group of files.
rename ‘s/old-name/new-name/’ files
For example, to convert all the text files into pdf files, execute the below command:
rename ‘s/\.txt$/\.pdf/’ *.txt
FAQs
What are the 5 basic components of Linux?
Every OS has component parts, and the Linux OS also has the following components parts:
Bootloader
OS Kernel
Background services
OS Shell
Graphics server
Desktop environment
Applications
How many commands Linux?
There are well over 100 Unix commands shared by the Linux kernel and other Unix-like operating systems.
How do I run a Linux command Online?
Best Online Linux Terminals To Practice Linux Commands
JSLinux. …
Copy.sh.
Codeanywhere
Webminal.
Tutorialspoint Unix Terminal.
JS/UIX.
CB.VU.
Linux Containers.