* disable the sreadahead service (accelerate the boot process)
sudo vim /etc/init/sreadahead.conf
The sreadahead tool helps to speed up the boot process with conventional hard disks, but it actually slows the boot with SSDs.and comment the following line:
exec /sbin/sreadahead -t 0
* edit the fstab file
sudo vim /etc/fstab
and add the following option to the SSD card noatime
/dev/sda1 / ext4 noatime,errors=remount-ro 0 1