Ever since I first installed Ubuntu I’ve added a line [vm.swappiness=10] in /etc/sysctl.conf to adjust the frequency the system MIGHT look to use swap.
Thus far in UM 16 fresh install I haven’t inserted this line. I’ve noticed the UM 16 seems more responsive than Ubuntu 14 {using gnome flash back] on the same hardware. So my question: Is there a log that contains information about swap or memory usage over time?
My thought is to apply this tweak after I’ve examined appropriate data
There’s a built-in tool called vmstat that might be appropriate, though it won’t show nice graphical stats.
You can log the output into a file for later review with something like:
vmstat -na 5 >> ~/Desktop/vmstats.log
(It will collect the stats every five seconds, delay to be tweaked to your liking.)
Cheers