1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-04-16 01:04:47 +02:00

fwupd: added

This commit is contained in:
2023-01-09 23:58:14 +01:00
parent fae07548c8
commit f597980488
10 changed files with 49 additions and 12 deletions

39
wiki/linux/fwupd.md Normal file
View File

@@ -0,0 +1,39 @@
# fwupd
[fwupd](https://fwupd.org/) is a daemon for managing and installing firmware
updates on Linux based operating systems.
It is mainly used for UEFI firmware and supported devices.
## Setup
fwupd can be installed on most distributions by installing the
`fwupd` package.
## Usage
The following commands describe the basic usage of an update process using
fwupd.
First the devices updatable by fwupd can be checked.
```sh
fwupdmgr get-devices
```
Afterwards the latest metadata can be downloaded by the following command.
```sh
fwupdmgr refresh
```
The updates can the be listed.
```sh
fwupdmgr get-updates
```
Finally the updates can be installed.
```sh
fwupdmgr update
```