さて 第一 ( 最初 )のパーテションに grub (grub legacy)の 設定を行います。
必要な ファイルを設置します。余分なものも有りますが一式コピーします。
# mount /dev/sdc1 /mnt/bk01 # mkdir -p /mnt/boot/grub # rmdir /mnt/lost+found/ # cd /mnt/boot/grub/ # cp -av /boot/grub/* . ...
grub.conf (または menu.lst とも いうようですが )を 作成 しましょう。
# vi grub.conf # cat pmt/boot/grub/grub.conf # GRUB configuration file # generated by 'grubconfig' # # Start GRUB global section default 0 timeout 10 fallback 1 splashimage /boot/grub/grubimg.xpm.gz title Plalmo 5.2 USB-squash fstab UUID root (hd0,1) kernel /isolinux/vmlinuz rootdelay=12 ramdisk_size=6000 \ root=/dev/ram0 rw vga16 unicon=eucjp vt.default_utf8=0 \ panic_output=7 init=/init initrd /isolinux/initrd.gz ... # cd # umount /mnt/
設置しませう
# grub GNU GRUB version 0.97 (640K lower / 3072K upper memory) [ Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists the possible completions of a device/filename.] grub> find /boot/grub/stage1 (hd1,0) (hd2,0) grub> root (hd2,0) Filesystem type is ext2fs, partition type 0x83 grub> setup (hd2) Checking if "/boot/grub/stage1" exists... yes Checking if "/boot/grub/stage2" exists... yes Checking if "/boot/grub/e2fs_stage1_5" exists... yes Running "embed /boot/grub/e2fs_stage1_5 (hd2)"... 24 sectors are embedded. succeeded Running "install /boot/grub/stage1 (hd2) (hd2)1+24 p (hd2,0)/boot/grub/stage2 /boot/grub/grub.conf"... succeeded Done. grub> quit
今回の場合は /dev/sdc は (hd2) で /dev/sdc1 は (hd2,0) に なる様です。
にゃんたろう 拝!
2014年 3月 23日 日曜日 21:06:07 JST 作成