First Commit

This commit is contained in:
2018-06-21 22:49:50 -05:00
commit af15154277
134 changed files with 23594 additions and 0 deletions

8
Laptop/cleankernels Executable file
View File

@ -0,0 +1,8 @@
#/bin/bash
ls /boot/ | grep vmlinuz | sed 's@vmlinuz-@linux-image-@g' | grep -v `uname -r` > /tmp/kernelList
for I in `cat /tmp/kernelList`
do
aptitude remove $I
done
rm -f /tmp/kernelList
update-grub