Topic 4: The linux operating system Flashcards
what command would display non-persistent storage usage?
free
what are two facts about drivers?
1) they can be built as modules and loaded into the kernel as needed
2) they can be compiled into the kernel
what command would you use to view all running processes?
ps aux
what folder typically stores service configuration files?
the /etc folder
what command could you use to view only your processes?
ps -u $(whoami)
what are 4 things that the top command displays?
system load average
running processes
current cpu usage
the PIDs of running processes
what are two utilities that could be used to view listening services and ports?
netstat and ss
what are two commands that display the IP address of the local host?
ip addr show
ifconfig