179 words
1 min read
Install Firmware for Kernel Drivers on Ubuntu
By Vladimir Mikhalev · Solutions Architect · Docker Captain · IBM Champion
This article is for those looking for a detailed and straightforward guide on installing firmware for kernel drivers on Ubuntu.
Visit the linux-firmware directory, then locate and copy the URL of the latest .deb file for the “linux-firmware” package.

Create a new directory for the “linux-firmware” package using the command:
mkdir /tmp/linux-firmware
Go to the new directory using the command:
cd /tmp/linux-firmware
Download the new version of the “linux-headers” package with the “.deb” extension using the command:
wget https://mirrors.edge.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.183_all.deb
Now you need to install the downloaded package using the command:
sudo dpkg -i *.deb
Specify the password for the account and press “Enter”.

We reboot the operating system using the command:
sudo reboot
Related Posts
- 1Recovering a Corrupt Exchange Database with Stellar Repair — Real-World Lab TestSysAdmin & IT Pro · We deliberately broke an Exchange 2019 server to see if Stellar Repair for Exchange could recover a dirty-shutdown EDB file. Step-by-step recovery process, lab setup, and lessons learned.
- 2Distinctions Between Terminal, Command Line, Shell, and PromptSysAdmin & IT Pro · Learn the differences between terminal, command line, shell, and prompt in Linux. A beginner-friendly guide to essential CLI concepts and tools.
- 3Install Ubuntu Server 22.04 LTSSysAdmin & IT Pro · Step-by-step guide to install Ubuntu Server 22.04 LTS. Covers language, disk setup, OpenSSH, user creation, and system configuration for beginners.
- 4Install OTRS on Ubuntu ServerSysAdmin & IT Pro · Comprehensive guide to installing OTRS Community Edition on Ubuntu Server. Learn to configure PostgreSQL, Apache, SSL with Let's Encrypt, and launch OTRS securely.
Random Posts
- 1Install Terraform on macOSDevOps & Cloud · Learn how to install Terraform on macOS using Homebrew. Step-by-step guide includes setup, version check, and usage tips for managing infrastructure as code.
- 2Docker supply chain hardening — from Scout D to OpenSSF 7.8 on a 730K-pull imageDevOps & Cloud · How I hardened a 730K-pull public Docker image from Scout grade D to OpenSSF Scorecard 7.8. Multi-stage build, cosign signing, SLSA provenance, non-root default, and the incident that changed how I ship attestations.
- 3Install Home Assistant Using Docker ComposeSelf-Hosting · Step-by-step guide to install Home Assistant with Docker Compose and Traefik. Secure your smart home with HTTPS using Let's Encrypt.
- 4Git Cheat SheetDevOps & Cloud · Fast and practical Git cheat sheet for developers. Learn essential Git commands for setup, commits, branching, merging, and more in one convenient guide.
Install Firmware for Kernel Drivers on Ubuntu
https://heyvaldemar.com/install-firmware-for-kernel-drivers-on-ubuntu/