RAID셋업[F8] RAID1 구성: (Create Array하기전에 반드시 1번을 수행할 것) 1. Configure Drives > RAID구성할 HDD를 모두 선택하고 Enter 2. Array Configuration Utility > Create Array > Select Drive(INS) > Complete Selection(Enter) > RAID1> BUILD
* 하드파손 시 RAID1재구성할 경우 Manage Arrays에서 ReBuild가 불가능할 경우, RAID세팅 풀어주고 RAID셋업절차에 따라 다시 ReBuild할 것.
하드 상태 * Free : RAID 구성이 가능한 상태 * Optimal : 오류가 없는 상태 * Degraded : RAID1으로 구성된 하드 디스크 중 다른 하나에 에러가 존재하여 재구성 필요한 상태 * Verify : Spare로 구성된 하드 디스크에 이상이 없음을 확인함.
*** Ubuntu는 HP계열에서 되는 것이 있고 안되는 것이 있음이 발견되었으며, RAID구성이 되었더라도 추후 깨짐이 발견되어 Software RAID로 구성하는 것이 현재(2009.07)로서는 바람직함.
2. 리눅스CD 삽입 후 부팅 시 Boot : 에서 일반적으로 설치 시 Enter 이나 Boot : linux dd 입력 후 Enter
3. driver disk 탐색에서 sda 선택 후 usb 드라이브 선택 후 첨부한 파일 실행 -> Controller 인식이 되어 RAID 적용 됨
4. 이후에는 리눅스 기본 설치와 동일
Re
HP DL360 G6의 경우 CentOS 설치 후 빨갱이화면 에러가 있다.
Admin
HP DL360 G6에 CentOS를 Raid로 구성하여 설치한 후, 업데이트하여 재부팅해보면 공포의 빨갱이 화면에 illegal OPCode라는 에러가 발생한다. grub의 MBR설정이 잘못되는 에러로 판단되며 이를 해결하기위해 아래와 같이 처리하자.
0. 여러번 재부팅하다보면 하드디스크 파일시스템마저 손상되는 경우가 있는데, 한번에 잘 될 수 있도록 하고 경우에 따라 fsck를 해주자. 1. 설치시디로 재부팅하여 linux dd rescue 를 입력하여 RAID를 인식시킨 채 복구모드로 부팅한다. 2. grub를 실행한 후 아래의 출처내용처럼 MBR을 재설정하자.
출처: http://www.linuxselfhelp.com/gnu/grub/html_chapter/grub_3.html grub> root (hd0,0) If you are not sure which partition actually holds these files, use the command @command{find} (see section find), like this:
grub> find /boot/grub/stage1 This will search for the file name `/boot/grub/stage1' and show the devices which contain the file.
Once you've set the root device correctly, run the command @command{setup} (see section setup): grub> setup (hd0) -- or -- This command will install GRUB on the MBR in the first drive. If you want to install GRUB into the boot sector of a partition instead of the MBR, specify a partition into which you want to install GRUB: grub> setup (hd0,0)