Getting Around Your Server
We explore the system a bit and see what common commands you might want to use.
Commands we cover:
pwdprint working directory (the current directory you are in)-
cdmove working directorycd ~orcd- Move to current user home directorycd -Go to the previous directory you were in
-
history- search command historyhistory | grep TERM- Search for a specific command run!48 - History returns a numbered list. Use! <command number>to re-run that command
-
lsb_release -a- Find system information on Debian/Ubuntu -
uname -r,uname -i- Get linux information (linux kernel version, 32 vs 64 bit, etc) -
ps aux- List all runningprocesses and information about them-
ps aux | grep TERM- Search for a process by a search term (e.g. php, nginx)
-
-
top- See currently running processes and resource usagehtop- A much nicer view of the top command, includers filters and other tools
df -h- See disk usage informationfree -m- See RAM and Swap usage
Original video
2018-01-17 07:25:41