Skip to content

Instantly share code, notes, and snippets.

@jftuga
Last active November 13, 2023 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jftuga/15a620383d9d3c86ae53c443c5b51989 to your computer and use it in GitHub Desktop.
Save jftuga/15a620383d9d3c86ae53c443c5b51989 to your computer and use it in GitHub Desktop.
How to Update Firmware on Ubuntu or Debian

This is a TL;DR for: https://linuxopsys.com/topics/update-firmware-on-ubuntu-using-fwupd

# Install
su -
apt update
apt install fwupd

# Display supported devices 
fwupdmgr get-devices

# Downloading the latest metadata from LVFS
fwupdmgr refresh

# Checking for available firmware updates
fwupdmgr get-updates

# Update the device firmware
# Updates that can be applied live will be done immediately.
# Updates that run at bootup will be staged for the next reboot.
fwupdmgr update

# Optional: Send Telemetry
# fwupd project encourages users to report both successful and failed updates back to LVFS.
# You can send the report using:
fwupdmgr report-history
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment