From 843d0a373adc8753bedbd079035292435aafc2eb Mon Sep 17 00:00:00 2001 From: Luc Date: Tue, 8 Oct 2024 18:25:10 +0200 Subject: [PATCH] Removed minor errors in update-protocol alpine-server-setup. --- docs/alpine-server-setup/post-install/update-protocol.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/alpine-server-setup/post-install/update-protocol.md b/docs/alpine-server-setup/post-install/update-protocol.md index 855d95e..ec403ca 100644 --- a/docs/alpine-server-setup/post-install/update-protocol.md +++ b/docs/alpine-server-setup/post-install/update-protocol.md @@ -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 ``` -> 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 @@ -21,7 +21,7 @@ Perform a system update. # 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 @@ -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 ``` -> 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. @@ -49,4 +49,4 @@ This may take a while, the progress can be checked with: # zpool status tank ``` -> A ZFS scrub only repairs if mirror or a zraid mode is used in the pool. \ No newline at end of file +> A ZFS scrub only repairs if mirror or a zraid mode is set in the pool. \ No newline at end of file