Changes between Version 5 and Version 6 of TipAndDoc/storage/RAID


Ignore:
Timestamp:
Jun 13, 2009 6:50:33 AM (15 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/storage/RAID

    v5 v6  
    66 == lilo == 
    77 * ファイルシステムにXFSを使う等で、OSインストール時にliloを選択した場合はデフォルトで全てのミラーdiskのMBRにliloがインストールされる模様 
     8   * /etc/lilo.conf (snip) 
     9{{{ 
     10# Specifies the boot device.  This is where Lilo installs its boot 
     11# block.  It can be either a partition, or the raw device, in which 
     12# case it installs in the MBR, and will overwrite the current MBR. 
     13# 
     14boot=/dev/md1 
     15 
     16# This option may be needed for some software RAID installs. 
     17# 
     18raid-extra-boot=mbr-only 
     19 
     20# Specifies the location of the map file 
     21# 
     22map=/boot/map 
     23 
     24# Specifies the number of deciseconds (0.1 seconds) LILO should 
     25# wait before booting the first image. 
     26# 
     27delay=20 
     28 
     29# 
     30# Boot up Linux by default. 
     31# 
     32default=Linux 
     33 
     34image=/vmlinuz 
     35        label=Linux 
     36        read-only 
     37#       restricted 
     38#       alias=1 
     39        append="root=/dev/md1  " 
     40        initrd=/initrd.img 
     41 
     42image=/vmlinuz.old 
     43        label=LinuxOLD 
     44        read-only 
     45        optional 
     46#       restricted 
     47#       alias=2 
     48        append="root=/dev/md1  " 
     49        initrd=/initrd.img.old 
     50}}} 
    851   * attachment:ubuntu-lilo-raid1.png 
    952   * RAID5でどうなるかは不明 
     53 
     54 == GRUB == 
     55 * デフォルトでは一つ目のミラーのMBRのみ、GRUBがセットされる 
    1056 
    1157 = mdadm =