up vote 2 down vote favorite
2
share [g+] share [fb]

For testing purpose of an application, I would like to limit the RAM of a server. I prefere not to remove the RAM-sticks. I could not find an option in the BIOS. Is there a way to modify this in the Linux configuration?

Thanks.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Use ulimit -d $SIZE_IN_KB to limit the data segment of the current bash shell and whatever you launch from it. help ulimit in bash gives you the documentation.

ETA: If you want to limit the whole system, set mem=1G as a boot parameter in grub (doc).

link|improve this answer
Great, it works! – user28362 Dec 15 '09 at 13:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.