Remove unneeded files from /lib/firmware

I'm trying to clear up space on my root partition and /lib/firmware is taking up a lot of space. There are a lot of files for devices that I know I don't have, but there's also a lot of files for devices that I don't recognize so I don't know whether or not I need the firmware.

Is there maybe a way to see what firmware files have actually been loaded?

8

1 Answer

You can check the firmware that is used for your system in the kernel log.

grep firmware /var/log/kernel.log

will give you a nice list of firmware that was loaded since the last log rotation (could be several days)

However since i first posted this, I learned that most of the firmware will be loaded by initrd and that usually does not generate a logfile of what it is doing.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like