ELF
Executable and Linkable Format: default executable file format on linux
SIGILL
Illegal instruction (ie dividing by zero)
SigSEV
Segmentation violation (ie trying to read or modify memory that hasn’t been allocated)
SIGPIPE
Network socket/pipe is closed by other end
SigINT
interuppt process
SIG TERM
order prodcess to clean up its state and terminate
SIGKILL
forcibly terminate process
find
command that searches for files/directories
i.e. find ~ -type f -name “*.txt”
grep
look for strings inside files
i.e. grep search_term file path
what does ps -e do?
ps -e lists every running process in the OS
what does ps -o do?
Allows you to select which column that you want outputted
ie ps -o pid,user