... | ... | @@ -19,7 +19,20 @@ where `<user>` is your username. Please check htop's [man page](https://man7.org |
|
|
|
|
|
## Monitoring Storage Usage
|
|
|
|
|
|
TODO
|
|
|
To monitor your total disk usage you can use the `quota` command, as explained in [this page](/storage).
|
|
|
|
|
|
You can also compute the total storage occupation of one directory (with all its content) with the following command:
|
|
|
```
|
|
|
du -hs <path-to-directory>
|
|
|
```
|
|
|
|
|
|
Finally, if you want to know the total storage space available in (all disks of) a server you can use the following command:
|
|
|
```
|
|
|
df -h
|
|
|
```
|
|
|
|
|
|
Check the man page of each `quota`, `du` and `df` for further options and details.
|
|
|
|
|
|
|
|
|
## Forgetting to Monitor
|
|
|
|
... | ... | |