summaryrefslogtreecommitdiff
path: root/debian/README.recipes
diff options
context:
space:
mode:
authormartin f. krafft <madduck@madduck.net>2008-07-16 18:30:44 +0200
committermartin f. krafft <madduck@madduck.net>2008-07-16 18:30:44 +0200
commit5733f87716a891eb8d06be088bf030f16e7dee3d (patch)
tree175b086d07ee5deea8176237210b8a7cf6c178c0 /debian/README.recipes
parent1af2b398f11c99029595b288342e10a83fd756a7 (diff)
parent6d6ba849967e924a8f612da4b414bcd9b321fe05 (diff)
Merge branch 'deb/docs'
Diffstat (limited to 'debian/README.recipes')
-rw-r--r--debian/README.recipes5
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/README.recipes b/debian/README.recipes
index 0d6c8d17..004e0ca8 100644
--- a/debian/README.recipes
+++ b/debian/README.recipes
@@ -102,12 +102,15 @@ The latest version of this document is available here:
mount /dev/md0 /home # also change /etc/fstab
mdadm --add /dev/md0 /dev/sda1
+ Warren Togami has a document explaining how to convert a filesystem on
+ a remote system via SSH: http://togami.com/~warren/guides/remoteraidcrazies/
+
10b. convert existing filesystem to RAID 1 in-place
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In-place conversion of /dev/sda1 to /dev/md0 is effectively
mdadm --create /dev/md0 -l1 -n2 /dev/sda1 missing
however, do NOT do this, as you risk filesystem corruption.
-
+
If you need to do this, first unmount and shrink the filesystem by
a megabyte (if supported). Then run the above command, then (optionally)
again grow the filesystem as much as possible.