Skip to content

Linux Basics

Linux powers most servers. Learn the shell, processes, filesystems, networking, and permissions.

Commands

Bash
# navigation
pwd
ls -la
cd /var/log

# processes
ps aux | grep app
kill -9 <pid>

# networking
ip addr
ss -tulpn
curl -I https://example.com

Warning

Never run commands as root unless necessary. Use sudo thoughtfully.