Copying all firmware files from GitHub repository kernel/git/firmware/linux-firmware to /lib/firmware

I copied the whole content of to the /lib/firmware folder of my system.

I do not face any issues and it fixed the missing firmware message, but I'm not sure if copying all files this way could cause me any trouble.

Could copying all firmware files with - sudo cp -r /home/username/linux-firmware/. /lib/firmware/. cause me any trouble?

Thanks a lot.

1 Answer

As files are manually installed, those wont be upgraded by standard update process.

You should try to install the linux-firmware package with the 'classic' method. In your case, you'll have to add an option for overwriting manually installed files.

sudo apt-get update
sudo apt-get -o Dpkg::Options::="--force-overwrite" install linux-firmware
1

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