Linux Basics for IT Support
Many corporate servers run Linux. Basic command-line familiarity is valuable even for Windows/macOS-focused support roles.
Essential Commands
pwd- show current directoryls -la- list files (including hidden) with detailscd /path- change directorycat filename- view file contentssudo command- run command with admin privileges
Networking Commands
ip a- show IP addresses (modern replacement forifconfig)ping google.com- test connectivitytraceroute google.com- trace network pathnslookup domain.com- DNS lookup
System Monitoring
toporhtop- view running processes and resource usagedf -h- check disk spacefree -h- check memory usagesystemctl status servicename- check status of a service
File Permissions
Linux file permissions follow the pattern rwx (read, write, execute) for three groups: owner, group, others.
-rwxr-xr-- 1 user group file.txt
||| ||| |||
||| ||| +-- others: read only
||| +-- group: read + execute
+-- owner: read, write, execute
Common Interview Talking Point
"While my main experience is with Windows, I'm building familiarity with Linux command-line basics - navigation, checking system resources, and basic networking diagnostics like ping and ip a."