Introduction
Linux is a powerful and widely used operating system in servers, cloud computing, and personal computing. Understanding Linux commands is crucial for system administrators, developers, and anyone working with Linux systems. This guide covers essential Linux commands, their usage, tips, and examples.
1. Navigation and File Management Commands
1.1 ls – List Directory Contents
Usage:
ls [options] [directory]
Common Options:
-l
: Long listing format.-a
: Show hidden files.-h
: Human-readable sizes.
Examples:
ls # List files in the current directory
ls -alh # List all files with details
ls /var/log # List files in a specific directory
1.2 cd – Change Directory
Usage:
cd [directory]
Examples:
cd ~ # Go to home directory
cd .. # Move up one level
cd /etc # Change to /etc directory
1.3 pwd – Print Working Directory
Usage:
pwd
Example:
pwd # Display current directory
2. File Viewing and Editing Commands
2.1 cat – Display File Contents
Usage:
cat [options] filename
Examples:
cat file.txt # Show file contents
cat -n file.txt # Show with line numbers
2.2 less – View Large Files
Usage:
less filename
Example:
less bigfile.log # Navigate with arrows, press ‘q’ to exit
2.3 nano – Simple Text Editor
Usage:
nano filename
Example:
nano notes.txt # Edit or create a file
3. System Information and Management Commands
3.1 sudo – Execute Commands as Root
Usage:
sudo command
Example:
sudo apt update # Update package lists
3.2 top – Display Running Processes
Usage:
top
Tip: Press q
to quit, h
for help.
3.3 df – Show Disk Space Usage
Usage:
df -h
Example:
df -h # Display disk usage in human-readable format
4. User Management Commands
4.1 adduser – Create a New User
Usage:
sudo adduser username
Example:
sudo adduser alice # Create a new user ‘alice’
4.2 passwd – Change Password
Usage:
passwd [username]
Example:
passwd # Change your own password
sudo passwd bob # Change another user’s password
5. Networking Commands
5.1 ping – Test Network Connectivity
Usage:
ping [options] destination
Example:
ping google.com # Check connectivity
5.2 ssh – Secure Remote Login
Usage:
ssh user@hostname
Example:
ssh alice@example.com # Connect to a remote server
5.3 wget – Download Files
Usage:
wget [URL]
Example:
wget http://example.com/file.zip # Download a file
6. Search and Text Processing Commands
6.1 grep – Search Text Patterns
Usage:
grep [options] pattern [file]
Examples:
grep “error” logfile.log # Search for ‘error’ in a file
grep -i “warning” logfile.log # Case-insensitive search
6.2 find – Locate Files
Usage:
find [path] [options] [expression]
Examples:
find / -name ‘notes.txt’ # Find files named ‘notes.txt’
find . -type f -name “*.log” # Find all log files
7. File Compression and Archiving
7.1 tar – Create and Extract Archives
Usage:
tar [options] archive_name.tar file_or_directory
Examples:
tar -cvf archive.tar /path/to/directory # Create a tar archive
tar -xvf archive.tar # Extract a tar archive
7.2 zip – Compress Files
Usage:
zip archive.zip file1 file2
Example:
zip archive.zip file1.txt file2.txt # Create a ZIP archive
unzip archive.zip # Extract a ZIP archive
8. Miscellaneous Commands
8.1 history – Show Command History
Usage:
history
Example:
history # Show command history
!55 # Run command number 55 from history
8.2 alias – Create Shortcuts
Usage:
alias name=’command’
Example:
alias ll=’ls -al’ # Create an alias for listing files
8.3 clear – Clear Terminal Screen
Usage:
clear
Example:
clear # Clear the screen
Conclusion
This guide covers essential Linux commands to help you navigate, manage files, monitor systems, and perform administrative tasks efficiently. Mastering these commands will enhance your proficiency in Linux environments.