# [[Updating Firmware on Linux]]
_Created: 2025-06-15_ | #linux #ubuntu| [[010 System Administration MOC]]
Good documentation at https://wiki.archlinux.org/title/Fwupd
## Summary
- Display all devices detected by _fwupd_:
```
fwupdmgr get-devices
```
- Download the latest metadata from the [Linux Vendor firmware Service (LVFS)](https://fwupd.org/):
```
fwupdmgr refresh
```
- List updates available for any devices on the system
```bash
fwupdmgr get-updates
```
- Install updates
```bash
fwupdmgr update
```