Viewing posts for the category UNIX
A few tips and tricks I use to achieve tasks in low bandwidth setups.
Be able to connect to a home device behind nat router internet box.
ps
ps -ef
ps aux
ps -ef | grep firefox # only information about a specific process
top
lsof path/to/file
lsof -c <program_name>
lsof -p <PID>
lsof -i :<port>
kill <PID> # PID Program IDentifier can be obtained from ps
killall <program_name>
When using the command line it’s useful to know how to move around and act on files.