... | ... | @@ -11,12 +11,22 @@ The best way to monitor your CPU and RAM usage is through the `htop` command lin |
|
|
```
|
|
|
htop -u <user>
|
|
|
```
|
|
|
where `<user>` is your username. Please check htop's [man page](https://man7.org/linux/man-pages/man1/htop.1.html) for all details on the output format and the various display options.
|
|
|
where `<user>` is your username. From inside the htop window, use `q` to exit.
|
|
|
|
|
|
Please check htop's [man page](https://man7.org/linux/man-pages/man1/htop.1.html) for all details on the output format and the various display options.
|
|
|
|
|
|
## Monitoring GPU Usage
|
|
|
|
|
|
> :warning: Thesis students only have access to `philae.polito.it` (as specified [here](/servers)), which does not have a GPU installed. So, the information below is only for other group members.
|
|
|
|
|
|
You can monitor the GPU utilization and GPU memory occupation of your scripts using the `nvidia-smi` command. A nicer looking version of the same information can also be obtained using the alternative custom script `nvidia-htop.py`.
|
|
|
|
|
|
Differently from `htop`, these two commands produce the output once and then terminate immediately. If you want to see a continuously updating output, similar to htop, you can launch the scripts with the `watch` command line utility. For example:
|
|
|
```
|
|
|
watch nvidia-htop.py
|
|
|
```
|
|
|
Check the man page of watch for details on its usage.
|
|
|
|
|
|
## Monitoring Storage Usage
|
|
|
|
|
|
To monitor your total disk usage you can use the `quota` command, as explained in [this page](/storage).
|
... | ... | |