This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
guides:best-practices [21.06.2022 10:58] Administrator |
guides:best-practices [21.06.2022 12:05] (current) Administrator |
||
---|---|---|---|
Line 18: | Line 18: | ||
Computing server has 32 computing cores. With [Simultaneous Multithreading](https:// | Computing server has 32 computing cores. With [Simultaneous Multithreading](https:// | ||
- | ## | + | ## Memory |
+ | |||
+ | ### How to find out how much memory (RAM) the computing server has. | ||
+ | |||
+ | Easy way to find out how much usable RAM server has is to use **[free](https:// | ||
+ | |||
+ | {{: | ||
+ | |||
+ | We are using -h parameter with **free** command to request output as human readable format. | ||
+ | We can see that: | ||
+ | |||
+ | - the computing server 1 TB of RAM. | ||
+ | - 211 GB of the available RAM is in use | ||
+ | - 260 GB of the RAM is free | ||
+ | - 4.8 GB of the RAM is used (mostly) by the [tmpfs](https:// | ||
+ | - 535 GB buff/cache. These resources are released when the free memory becomes scarce. | ||
+ | - 784 GB of RAM is available. This is not totally **[accurate](https:// | ||
+ | |||
+ | Other useful commands are: | ||
+ | cat / | ||
+ | |||
+ | |||
+ | ### How to monitor memory usage | ||