MacOS
MacBook Quick Guide for Network Engineers & DevOps
This guide provides essential macOS shortcuts, terminal commands, and operations specifically useful for **Network Engineers & DevOps professionals**.
π₯ Essential Keyboard Shortcuts
Action | Shortcut |
---|---|
**Copy** | β + C
|
**Paste** | β + V
|
**Cut** | β + X
|
**Undo** | β + Z
|
**Redo** | β + Shift + Z
|
**Select All** | β + A
|
**Open Terminal** | β + Space β type Terminal
|
**New Terminal Window** | β + N (in Terminal)
|
**New Terminal Tab** | β + T (in Terminal)
|
**Close Tab** | β + W
|
**Force Quit an App** | β + Option + Esc
|
**Switch Between Open Apps** | β + Tab
|
**Show All Open Windows (Mission Control)** | Control + β
|
**Switch Between Desktops (Spaces)** | Control + β / Control + β
|
π₯οΈ Useful Terminal Commands for Network Engineers
System Information
uname -a # Show system information system_profiler SPHardwareDataType # Detailed Mac hardware info sw_vers # Show macOS version uptime # Show system uptime
Network Diagnostics
ifconfig # Display network interfaces & IPs netstat -rn # Show routing table dig example.com # Query DNS records nslookup example.com # Perform DNS lookup ping 8.8.8.8 # Test network connectivity traceroute google.com # Trace network path
SSH & Remote Access
ssh user@host # SSH into a remote server scp file.txt user@host:/path/ # Secure copy file to remote host rsync -avz /source/ user@host:/dest/ # Sync files efficiently ssh -L 5901:localhost:5901 user@host # Create SSH tunnel
Network Monitoring & Packet Capture
tcpdump -i en0 port 22 # Capture SSH traffic on WiFi interface sudo lsof -i :80 # List processes using port 80 sudo netstat -anp tcp # Show active TCP connections sudo dscacheutil -flushcache # Flush DNS cache arp -a # Show MAC-to-IP mappings
Get Serial Number
system_profiler SPHardwareDataType | grep Serial
Get Hostname
scutil --get HostName
Set Hostname
sudo scutil --set HostName <new host name>
π§ DevOps & Automation Commands
Git & Version Control
git status # Check repo status git pull # Fetch latest changes git commit -m "message" # Commit changes git push origin main # Push to remote repo
Docker & Kubernetes
docker ps # List running containers docker logs container_id # View container logs kubectl get pods -A # Show all Kubernetes pods kubectl describe pod pod_name # Detailed pod info
Terraform
terraform init # Initialize Terraform terraform plan # Preview changes terraform apply # Deploy infrastructure terraform destroy # Tear down infrastructure
π macOS File System Commands
ls -lah # List files with details cd /path/to/dir # Change directory mv oldname newname # Rename/move files cp file1 file2 # Copy files rm -rf directory # Force delete directory find / -name "file.txt" # Search for a file
π macOS Productivity Tricks
- **Three-finger swipe left/right** β Switch between desktops
- **Three-finger swipe up** β Open Mission Control
- **Pinch with thumb & three fingers** β Open Launchpad
- **Use Spotlight (`β + Space`)** β Quickly find files, apps, or even do calculations
π₯ Pro Tip
- Create an alias for frequent commands:**
Edit `~/.zshrc` and add:
alias ll='ls -lah' alias k='kubectl' alias tf='terraform'
Then run:
source ~/.zshrc
This saves time by shortening commands.
Would you like more advanced topics covered? Let me know! π