No swap, swap or swap with hibernate? And do you change the swappiness setting?
Depends on how much RAM you intend to use, and how much you need. For normal web browsing, I think probably enough swap space to make your total RAM + Swap amount up to 24GiB should do. If you have more than that and don’t run anything memory intensive, you can probably get away without any swap at all.
If you want the ability to hibernate though, you need at least the same amount of swap as physical RAM (since Linux will use the swap space as the location to “hibernate to”.
I think for an SSD it makes sense to use a swap file rather than a swap partition, since random access is basically free and you can resize it easily. That’s a minor thing though.
How much memory do you have? How much storage do you have? What will this computer be used for? Do you want to be able to hibernate?
I have learned about the existence of zram and zswap today, and added a higher priority RAM swap on my workstation to reduce swapping to SSD. Should speed things up even more.
cat /proc/sys/vm/swappiness
Open /etc/sysctl.conf for editing:
sudo gedit /etc/sysctl.conf
Add vm.swappiness=10 at the end and save the file.
Reboot your system and check the swappiness value:
cat /proc/sys/vm/swappiness # 10
And why do I want this? And if I want this, why is it not the default already? SSDs have been mainstream for ten years I guess, so shouldn’t any current Linux installer do the right thing by now?



