🐧 Linux Learning Notes

📂 Topics Covered

File Description Status
Learn 01 Linux Basics ✅ Done
Learn 02 Intermediate Commands ✅ Done
Learn 03 Advanced Topics ✅ Done
DevOps Guide Linux for DevOps ✅ Done
DevOps Story Learning Journey ✅ Done

🎯 Quick Reference

File Operations

# List files
ls -la

# Change directory
cd /path/to/dir

# Copy file
cp source.txt dest.txt

# Move/Rename
mv old.txt new.txt

# Remove file
rm file.txt

# Remove directory
rm -rf folder/

File Permissions

# Change permissions
chmod 755 file.sh    # rwxr-xr-x
chmod +x script.sh   # Add execute

# Change owner
chown user:group file.txt

Process Management

# List processes
ps aux

# Kill process
kill -9 <pid>

# Background process
command &

# View resource usage
top / htop

Useful Commands

# Find file
find /path -name "*.txt"

# Search in files
grep "pattern" file.txt
grep -r "pattern" ./

# Disk usage
df -h
du -sh folder/

# System info
uname -a
cat /etc/os-release

📚 Resources


Last Updated: March 2026