Changes between Version 11 and Version 12 of TipAndDoc/storage/RAID


Ignore:
Timestamp:
Jun 13, 2009 9:37:46 AM (15 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/storage/RAID

    v11 v12  
    6565   * [http://www.naney.org/diki/d/2004-01-05-RAID.html nDiki:  Debian  GRUB でソフトウェアRAID1 ブート設定 (2004-01-05)] 
    6666   * [http://d.hatena.ne.jp/hogem/20061018/1161187177 ソフトウェアRAID(RAID1)で2台目のHDDでブートする方法 - うまい棒blog] 
     67   * [http://shukukei.com/2009/03/raid1grub.html ソフトウェアRAID1にgrubをインストールする(メモ) - 夙慧.com] 
     68 
     69 * GRUBのコマンドについて 
     70   * [http://www.h5.dion.ne.jp/~simochu/grub/grub.html Introduction to GNU GRUB] 
     71   * [http://www.geocities.co.jp/SiliconValley-Bay/3897/grub/grub.html grubを使おう] 
     72   * [http://grub.enbug.org/CommandList CommandList - GRUB Wiki] 
     73 * この情報によると、RAID時にGRUBコマンドのデファクトとなっている「install」コマンドではなく「setup」コマンドがbetter? 
     74   * ネット上で主に見つかる手順 
     75     1. df /boot 
     76{{{ 
     77Filesystem           1K-blocks      Used Available Use% Mounted on 
     78/dev/md1               1450192    605532    771572  44% / 
     79}}} 
     80     1.  grep md1 /proc/mdstat 
     81{{{ 
     82md1 : active raid1 sda2[0] sdb1[2](S) sdc2[1] 
     83}}} 
     84     1. sudo grub 
     85{{{ 
     86grub> device (hd0) /dev/sdc 
     87grub> root (hd0,1) 
     88grub> install /boot/grub/stage1 (hd0) /boot/grub/stage2 p /boot/grub/grub.conf 
     89}}} 
     90     * こちらの方がbetter? (未検証) 
     91{{{ 
     92grub> root (hd2,1) 
     93grub> setup (hd2) 
     94}}} 
     95 
    6796 === Ubuntu === 
    6897 * liloと同様に、二つ目のMBRにもGRUBが自動でセットされる模様。GRUB installは不要?