07-30-2015, 12:05 AM
That is a good point about pic quality. I will look into that.
Ok, I'm an imgur convert... 8)
Ok, I'm an imgur convert... 8)
(07-30-2015, 12:05 AM)paul1149 link Wrote:That is a good point about pic quality. I will look into that.
![[Image: X5qGkCg.png]](https://imgur.com/X5qGkCg.png)
(07-29-2015, 11:56 PM)Jerry link Wrote:Trim SSD - use this command to check if Trim is supported:
Code:sudo hdparm -I /dev/sda | grep "TRIM supported"
If it is, follow the guide in the Help ManualIf you don't Trim, your SSD life will be reduced, so it's a must do given their cost.
Type carefully in the fstab and always check with sudo mount -a before rebooting
![[Image: EtYqOrS.png%5D]](http://imgur.com/EtYqOrS.png%5D)
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
LOG=/var/log/trim.log
echo “*** $(date -R) ***” >> $LOG
fstrim -v /boot >> $LOG
fstrim -v / >> $LOG
fstrim -v /home >> $LOG
fstrim -v /sparessd >> $LOG
echo " " >> $LOG
exit 0![[Image: X5qGkCg.png]](https://imgur.com/X5qGkCg.png)
![[Image: EtYqOrS.png%5D]](http://imgur.com/EtYqOrS.png%5D)

gksu gedit /etc/cron.daily/trimgksu leafpad /etc/cron.daily/trim