From 81a388747a5e23b29e96b6624f5b919eb2ab46fa Mon Sep 17 00:00:00 2001 From: abactel Date: Fri, 19 May 2017 21:54:14 +0100 Subject: [zfs/en] Fix bullet points (#2732) This commit will fix the incorrect bullet point markdown to allow proper html generation. --- zfs.html.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'zfs.html.markdown') diff --git a/zfs.html.markdown b/zfs.html.markdown index 3fe05896..3d033da9 100644 --- a/zfs.html.markdown +++ b/zfs.html.markdown @@ -24,6 +24,7 @@ VDEV's offer better reliability and safety than a RAID card. It is discouraged RAID setup with ZFS, as ZFS expects to directly manage the underlying disks. Types of VDEV's + * stripe (a single disk, no redundancy) * mirror (n-way mirrors supported) * raidz @@ -60,6 +61,7 @@ single host can have 2^64 storage pools. The limits are huge. ### Storage Pools Actions: + * List * Status * Destroy -- cgit v1.2.3 From f7198dfcec9a35cb88f013d830fb614645bc9edb Mon Sep 17 00:00:00 2001 From: Keith Miyake Date: Wed, 27 Sep 2017 23:36:23 -0700 Subject: [zfs/en] Fix unordered lists markdown formatting --- zfs.html.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'zfs.html.markdown') diff --git a/zfs.html.markdown b/zfs.html.markdown index 3d033da9..fad6b62d 100644 --- a/zfs.html.markdown +++ b/zfs.html.markdown @@ -149,6 +149,7 @@ $ zpool destroy test ### Datasets Actions: + * Create * List * Rename @@ -269,6 +270,7 @@ ZFS snapshots are one of the things about zfs that are a really big deal * They are easy to automate. Actions: + * Create * Delete * Rename -- cgit v1.2.3 From af92e7ff504a2d6c0cbe4d6c6a94378c22273817 Mon Sep 17 00:00:00 2001 From: Pariksheet Nanda Date: Fri, 26 Jul 2019 16:29:23 -0400 Subject: fix unclosed code block, command prompts, spelling --- zfs.html.markdown | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'zfs.html.markdown') diff --git a/zfs.html.markdown b/zfs.html.markdown index fad6b62d..6795b1fa 100644 --- a/zfs.html.markdown +++ b/zfs.html.markdown @@ -221,7 +221,7 @@ Delete dataset ```bash # Datasets cannot be deleted if they have any snapshots -zfs destroy tank/root/home +$ zfs destroy tank/root/home ``` Get / set properties of a dataset @@ -294,6 +294,7 @@ tank/home/sarlalian@now 0 - 259M - tank/home/alice@now 0 - 156M - tank/home/bob@now 0 - 156M - ... +``` Destroy snapshots @@ -313,13 +314,13 @@ Renaming Snapshots $ zfs rename tank/home/sarlalian@now tank/home/sarlalian@today $ zfs rename tank/home/sarlalian@now today -# zfs rename -r tank/home@now @yesterday +$ zfs rename -r tank/home@now @yesterday ``` Accessing snapshots ```bash -# CD Into a snapshot directory +# CD into a snapshot directory $ cd /home/.zfs/snapshot/ ``` @@ -335,11 +336,11 @@ $ zfs send tank/home/sarlalian@now | zfs recv backups/home/sarlalian # Send a snapshot to a remote host $ zfs send tank/home/sarlalian@now | ssh root@backup_server 'zfs recv tank/home/sarlalian' -# Send full dataset with snapshos to new host +# Send full dataset with snapshots to new host $ zfs send -v -R tank/home@now | ssh root@backup_server 'zfs recv tank/home' ``` -Cloneing Snapshots +Cloning Snapshots ```bash # Clone a snapshot -- cgit v1.2.3