diff options
author | Colin Watson <cjwatson@debian.org> | 2009-02-21 10:26:22 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-02-21 10:26:22 +0000 |
commit | d2272ac05b8c9a359261f25a8bbedb08cf63c25c (patch) | |
tree | 77bdf752965b17eb34a72d921f38d0ecbd45549e /en/appendix | |
parent | cf7e7a3ccc707e7add6830d080816bfbaa0de717 (diff) | |
download | installation-guide-d2272ac05b8c9a359261f25a8bbedb08cf63c25c.zip |
Use /dev/sda and /dev/sdb in the RAID preseeding example rather than
/dev/discs/disc0/disc and /dev/discs/disc1/disc, since the latter
devices no longer exist.
Diffstat (limited to 'en/appendix')
-rw-r--r-- | en/appendix/preseed.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/en/appendix/preseed.xml b/en/appendix/preseed.xml index 64ae92f5d..e75882188 100644 --- a/en/appendix/preseed.xml +++ b/en/appendix/preseed.xml @@ -1044,7 +1044,7 @@ Check <filename>/var/log/syslog</filename> if you run into problems. #d-i partman-auto/method string raid # Specify the disks to be partitioned. They will all get the same layout, # so this will only work if the disks are the same size. -#d-i partman-auto/disk string /dev/discs/disc0/disc /dev/discs/disc1/disc +#d-i partman-auto/disk string /dev/sda /dev/sdb # Next you need to specify the physical partitions that will be used. #d-i partman-auto/expert_recipe string \ @@ -1067,14 +1067,14 @@ Check <filename>/var/log/syslog</filename> if you run into problems. # <devices> <sparedevices> # RAID levels 0, 1, 5, 6 and 10 are supported; devices are separated using "#" #d-i partman-auto-raid/recipe string \ -# 1 2 0 ext3 / \ -# /dev/discs/disc0/part1#/dev/discs/disc1/part1 \ -# . \ -# 1 2 0 swap - \ -# /dev/discs/disc0/part5#/dev/discs/disc1/part5 \ -# . \ -# 0 2 0 ext3 /home \ -# /dev/discs/disc0/part6#/dev/discs/disc1/part6 \ +# 1 2 0 ext3 / \ +# /dev/sda1#/dev/sdb1 \ +# . \ +# 1 2 0 swap - \ +# /dev/sda5#/dev/sdb5 \ +# . \ +# 0 2 0 ext3 /home \ +# /dev/sda6#/dev/sdb6 \ # . # This makes partman automatically partition without confirmation. |