1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-19 22:15:31 +02:00
tldr/pages/linux/fwupdmgr.md
Managor c3300bf468
fwupdtool: add page, fwupdmgr: refer to fwupdtool and add example (#16577)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-05-25 17:14:10 +03:00

25 lines
615 B
Markdown

# fwupdmgr
> Update device firmware, including UEFI, using `fwupd`.
> See also: `fwupdtool`.
> More information: <https://github.com/fwupd/fwupd/blob/main/src/fwupdmgr.md>.
- Display all devices detected by `fwupd`:
`fwupdmgr get-devices`
- Download the latest firmware metadata from LVFS:
`fwupdmgr refresh`
- List the updates available for devices on your system:
`fwupdmgr get-updates`
- Install firmware updates:
`fwupdmgr update`
- Remount `/boot` with more privileges if update complains about a read-only filesystem:
`sudo mount {{[-o|--options]}} uid=1000,gid=1000,umask=0022 {{/dev/sdX}} /boot`