# Prozesse und Performance

**Prozesse:**
```bash
top 
htop 
ps aux | grep PROCESS
```
**Speicher:**
```bash
free -h 
vmstat
```

**Netzwerk:**
```bash
netstat -tulnp 
ss -tulnp
iftop
```
**Load:**
```bash
uptime 
w
```