Removed minor errors in update-protocol alpine-server-setup.

This commit is contained in:
Luc Bijl 2024-10-08 18:25:10 +02:00
parent 7e2341c230
commit 843d0a373a

View file

@ -10,7 +10,7 @@ To be able to rollback the system after a system update one may create a snapsho
# zfs snapshot tank/root/alpine@previous # zfs snapshot tank/root/alpine@previous
``` ```
> Tip: `zfs destroy` can be used to remove snapshots and `zfs list -t snapshot` can be used to list them. > Tip:`zfs list -t snapshot` can be used to list snapshost and `zfs destroy` can be used to remove snapshots.
## Update ## Update
@ -21,7 +21,7 @@ Perform a system update.
# reboot # reboot
``` ```
If the system does not behave accordingly after reboot, one may rollback to the previous snapshot and further investigate from there. If the system does not behave accordingly after reboot, one may rollback to the previous snapshot.
``` ```
# zfs rollback -r tank/root/alpine@previous # zfs rollback -r tank/root/alpine@previous
@ -35,7 +35,7 @@ To maintain the performance of the SSDs in the system, perform a trim on the zfs
# zpool trim --secure --wait tank # zpool trim --secure --wait tank
``` ```
> Some devices may not support the option `--secure`, remove it then, if necessary. > Some devices may not support the option `--secure`.
Thereafter, perform a scrub on the zfs-pool which checks and repairs the data in the pool. Thereafter, perform a scrub on the zfs-pool which checks and repairs the data in the pool.
@ -49,4 +49,4 @@ This may take a while, the progress can be checked with:
# zpool status tank # zpool status tank
``` ```
> A ZFS scrub only repairs if mirror or a zraid mode is used in the pool. > A ZFS scrub only repairs if mirror or a zraid mode is set in the pool.