Last active
October 27, 2023 09:02
-
-
Save Hashbrown777/5a3d3c9adc15e48223f92ccb4965ba7d to your computer and use it in GitHub Desktop.
Assorted commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#top for networking | |
sudo iftop -P -B | |
#shows connexions going through listened port | |
sudo tcptrack -i eno1 port 8080 | |
#get process listening on port | |
sudo netstat -tulpn | ag 8080 | |
#top for disks | |
sudo iotop | |
#top disk IO usage | |
sysdig -c topfiles_bytes | |
sysdig -c topfiles_time | |
#list other things that can be listed | |
sysdig -cl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment