It is quite well known that Linux (and other unices) tends to use as much as memory as possible. Once you read a file or a block on disk, it will be put in cache on memory, just in case...
Then, you may have some issues with free memory. For example, on a machine with 4GB of RAM:
free -m...
Par défaut, Linux a tendance à utiliser toute la RAM pour accélérer ses opérations, et notamment pour y placer en cache ses données.
On peut donc arriver facilement à des situations où la RAM est utilisée à 90% ou plus, alors que les traitements n'en p...