Linux and its basic commands

Linux and its basic commands

Linux OS

ยท

2 min read

What is Linux?

Linux is an open-source Operating system based on Unix. It was first developed by Linus Torvalds in 1991 and is now widely used in various computer systems, from desktop computers to servers, and even in mobile devices.

One of the main advantages of Linux is its flexibility and customizability.

It has many flavors like Ubuntu, CentOS, Kali-Linux, Fedora, etc.

Linux commands

1> pwd : - Show your current directory.

2> ls :- It is used to list all files and folders present in a directory.
ls -a :- It is used to list all files and folders including hidden files and folders.
ls -R :- It is used to list the contents of the subdirectories recursively.

3> cd :- This command is used to change the directories.
cd <path> :- To change the directory to the provided path.
cd .. :- To change the directory to one step back.
cd ~ or cd :- Used to bring the user to the home directory.

4> mkdir :- This command is used to create the directory.

5> mv :- This command is used to rename file or directory.
mv Original_name New_name

6> rm :- This command is used to remove/delete files.
rm -r :- Delete a non-empty file directory and all the files within it.
rmdir :- Delete a directory.

7> cp :- This command is used to copy a directory.
cp -r dirname new_dirname

8> cat :- This is used to display content inside the file.

9> touch :- This command is used to create a file.
touch file_name

10> clear :- This command is used to clear the terminal.

10> sudo :-This is used to allow a regular user to run programs with the security privileges of the superuser or root user.

ย