Last active
September 27, 2020 17:35
-
-
Save schneefisch/188060fc84d40d9bf58913ffaaa40747 to your computer and use it in GitHub Desktop.
Basic linux usage and stats commands
This file contains 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
#!/usr/bin/env bash | |
# | |
# show file system usages | |
df -h | |
# disk usage (graphical) | |
ncdu | |
# prozess / system monitor | |
htop | |
# disk io | |
iostat | |
iotop | |
# network | |
# tasks and their open/listening ports, including data input/output | |
nettop | |
bmon | |
iftop | |
# bandbreitenmessung | |
iperf3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment