3

Every minute or hr it shows a loading spinner on my screen even I'm using Mozilla Firefox or Chromium. When you're experience on it, everything on browser are immutable. browser with loading spinner

Here is the result when I run the free -m

     total        used        free      shared  buff/cache   available

Mem:   7879                4904              938               277          2036                 2419

Swap: 2047                   61               1986

1 Answers1

1

Please increase your swap file to at least 3GB
(and at least 11 GB if you added Hibernation to your Ubuntu)
as recommended by Ubuntu https://help.ubuntu.com/community/SwapFaq

Close all apps and open a terminal window. Run:

sudo swapoff -a
sudo dd if=/dev/zero of=/swapfile bs=3G count=8
sudo mkswap /swapfile
sudo swapon /swapfile
grep SwapTotal /proc/meminfo

You should now see 3 GB of swap. You can change 3 in the second line of that command, to a larger value if you want, but no more than 16 GB.

K7AAY
  • 17,705