12-27-2016, 04:10 AM
This did it! Thank you so much for the help Jerry! I'm loving Linux Lite 3.2!
(12-26-2016, 03:54 AM)Jerry link Wrote: Assuming you have got up to this point in the Help Manual, continue with the following.
Open a terminal and do:
Code:sudo leafpad /etc/rc.local
copy the below into it overwriting the existing contents:
Code:#!/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 / >> $LOG
echo " " >> $LOG
exit 0
then carry on with the rest of the Trim tutorial in the Help Manual.