Day 1: Mastering The Linux Basic Commands Part 1
Aug 3, 2024
•11:32 PM GMT+8

In the Linux environment, engineers and developers frequently rely on the terminal. This guide presents essential commands for Linux users to navigate and manage their systems confidently. This blog post introduces critical Linux commands, providing a foundational guide for beginners to navigate, manage, and troubleshoot their Linux systems effectively.
Navigating the File System
- pwd command
print name of current/working directory.
pwd

- ls command
list directory contents. Usels -lrth
for detailed information, orls -lah
to include hidden files.
ls -lrth
ls -lah

- cd command
Changes the current directory. Usecd ..
to move up one level, orcd ~
to navigate to your home directory.
cd NEW_FOLDER_01
cd ..
cd ~

File and Directory Management
- mkdir command (Make Directory)
Changes a new directory.
mkdir NEW_FOLDER_02
mkdir NEW_FOLDER_03 NEW_FOLDER_04

- touch command
Creates a new, empty file.
touch new_file_01.txt
touch new_file_02.txt new_file_03.txt

- cp command (Copy)
Copies files or directories. Usecp -r
to copy directories recursively.
cp source_file destination_file
cp -r source_directory destination_directory

- mv command (Move)
Moves or renames files and directories.
mv old_name.txt new_name.txt
mv file.txt /path/to/destination/

- rm command (Remove)
Deletes files. Userm -r
to delete directories and their contents.
rm file.txt
rm -r directory_name

Viewing and Editing Files
- cat command (Concatenate)
Displays the contents of a file.
cat file.txt

- less and more command
View the contents of a file one page at a time. Useq
to exit. For more techniques with this command, this blog is worth to read ioflood.com.
less file.txt
more file.txt

- nano, vi, vim command
Text editors for creating and editing files directly in the terminal.
nano file.txt
vi file.txt
vim file.txt

Looking Forward to Part 2
Mastering the basic Linux commands is the first step in becoming proficient with the Linux operating system. The commands covered here include navigating the file system, managing files and directories, and viewing or editing files. These are foundational skills that every Linux user should know. In the next blog post, we will explore more advanced Linux commands and concepts.
Stay tuned for Part 2, where we'll continue to explore the powerful tools that Linux offers.
Day 1: Mastering The Linux Basic Commands Part 1
Introduces essential Linux commands, providing a foundational guide for beginners to navigate, manage, and troubleshoot their Linux systems effectively.
For the passion of automated cloud solutions.
Subscribe to get the latest posts. I mostly write about Backend (Python/Bash), DevOps and Linux.