Device firmware: Difference between revisions

From HPCWIKI
Jump to navigation Jump to search
(Created page with " == How can I upgrade my device firmware from the command line (Ubuntu)<ref>https://askubuntu.com/questions/1394105/how-can-i-upgrade-my-device-firmware-from-the-command-line</ref> == <syntaxhighlight lang="bash"> Install fwupd $ sudo apt install fwupd Get a list of devices that support firmware updates with fwupdmgr, its source database for devices' firmware. You can add more sources by configuring them in /etc/fwupd/remotes.d/. $ fwupdmgr get-devices To update devic...")
 
(Add categories: Hardware, Reference)
Line 16: Line 16:
== Referencs ==
== Referencs ==
<references />
<references />
[[Category:Hardware]]
[[Category:Reference]]

Revision as of 00:55, 15 July 2026

How can I upgrade my device firmware from the command line (Ubuntu)[1]

Install fwupd 
$ sudo apt install fwupd

Get a list of devices that support firmware updates with fwupdmgr, its source database for devices' firmware. You can add more sources by configuring them in /etc/fwupd/remotes.d/.
$ fwupdmgr get-devices

To update device firmware, you can run the following command:
$ sudo fwupdmgr get-updates
$ sudo fwupdmgr update

Referencs