sudo nano /etc/default/grub
Look for the line :
#GRUB_GFXMODE=640x480
Just underneath write the line :
GRUB_GFXPAYLOAD_LINUX=auto
close & save
sudo update-grub
UUID=xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx / ext4 defaults,noatime,discard 0 1
Create a UDEV rule to setup the I/O scheduler:
/etc/udev/rules.d/60-schedulers.rules
# set deadline scheduler for non-rotating disks
ACTION=="add|change", KERNEL=="sd[a-z]", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="deadline"
The following is a recommended tweak for SSDs using a swap partition that will reduce the "swappiness" of the system thus avoiding writes to swap:
/etc/sysctl.d/99-sysctl.conf
vm.swappiness=1
vm.vfs_cache_pressure=50