updated notes

This commit is contained in:
Hugh Ratsch
2025-02-12 21:00:24 -06:00
parent f3a5b01310
commit 8cbcebc1d1
+13
View File
@@ -96,5 +96,18 @@ sudo nmcli connection delete id "ens160" # Delete the ethernet connection
sudo nmcli connection show # Show all connections
```
## Manage and Monitor Processes
### top
```bash
top # Display running processes
top -o %MEM # Sort by memory usage
top -o %CPU # Sort by CPU usage
```