What happens when linux OS out of RAM and no swap

23,309

When the operating system is out of RAM and has no swap, it discards clean pages. It cannot discard dirty pages because it would have to write them somewhere first. This causes thrashing and poor performance if there is insufficient RAM to hold the working set. That's one of the main reasons you really want swap -- so the operating system can make a better decision about what pages to evict.

With no swap, the system will run out of virtual memory (strictly speaking, RAM+swap) as soon as it has no more clean pages to evict. Then it will have to kill processes.

Running out of RAM is completely normal. It's just a negative spin on using RAM. Not running out of RAM could equally well be described as "wasting RAM". Once all RAM is in use, the operating system makes intelligent decisions about what to keep in RAM and what not to. Without any swap, it has fewer choices.

With or without swap, when evicting pages isn't sufficient, the operating system will start by refusing to permit operations that require memory (such as mmap and fork) to succeed. However, sometimes that's not enough and processes have to be killed.

Share:
23,309

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    What happens when linux OS is out of RAM and no swap is available?

  • TheTurkey
    TheTurkey over 10 years
    +1 "Running out of RAM is completely normal. It's just a negative spin on using RAM. Not running out of RAM could equally well be described as "wasting RAM"."
  • Prahlad Yeri
    Prahlad Yeri about 9 years
    A related query. Do you know what happens if I try to hibernate a Linux machine and there isn't enough swap space to store the transient data? Does it stop hibernating?
  • David Schwartz
    David Schwartz about 9 years
    @PrahladYeri That's correct. If you don't have a suspend partition and there isn't enough free swap to hold the contents of RAM, you cannot hibernate.
  • Sampo Sarrala - codidact.org
    Sampo Sarrala - codidact.org almost 7 years