Hi Jarno, Thanks for all your advice and additional thanks to *Pxtl* for the idea of a script, here's my own variation... ``` sudo apt-get purge `dpkg -l "linux-image-3.13.0-8*" | grep -E "linux-image-3.13.0-8*" | awk {'print $2'} | tr '\n' ' '` ``` *Explaination*: the *dpkg* lists all the kernel images, followed by *grep* to limit the list to just version .8* kernels and lastly *awk* and *tr* convert the vertical list into a one-liner that is encapsulated by back ticks that wraps into an *apt-get purge* command with a chance to review everything before committing to Yes, use caution... This freed up my */boot* volume, here's before and after running it over version .7* and .8* kernels using *df -h* /dev/sda1 236M 187M 37M 84% /boot -- BEFORE /dev/sda1 236M 70M 154M 31% /boot -- AFTER Finally my installed kernels as of now... linux-image-3.13.0-24-lowlatency linux-image-3.13.0-91-generic linux-image-3.13.0-91-lowlatency linux-image-3.13.0-92-generic linux-image-3.13.0-92-lowlatency linux-image-extra-3.13.0-77-generic linux-image-extra-3.13.0-79-generic linux-image-extra-3.13.0-83-generic linux-image-extra-3.13.0-86-generic linux-image-extra-3.13.0-87-generic linux-image-extra-3.13.0-88-generic linux-image-extra-3.13.0-91-generic linux-image-extra-3.13.0-92-generic linux-image-generic linux-image-generic-lts-trusty linux-image-lowlatency It appears as if *apt-get purge* properly sorted out which *lowlatency* and which *generic* kernels to keep. I'd suggest this a potential workaround for now, please test and verify. Many thanks in advance. Kind Regards, Gordon On Sun, Jul 24, 2016 at 6:01 AM, Jarno Suni