Viewing posts for the category Tech
Here is a selection of commands I find useful when using a Windows system.
A very neat trick to share files over a LAN.
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.