Linux2010. 5. 3. 21:52
grub-install 이라는 것을 이용해서 특정 장치에 grub를 설치할수 있다.
아래의 예제는 플로피 디스크에 grub를 설치하는 예제이다.
마운트가 /mnt에 되었으므로 grub-install시에 --root-directory를 /mnt로 지정해준다.

# mke2fs /dev/fd0
# mount -t ext2 /dev/fd0 /mnt
# grub-install --root-directory=/mnt fd0
# umount /mnt

[링크 : http://www.gnu.org/software/grub/manual/html_node/Installing-GRUB-using-grub_002dinstall.html]
[링크 : http://www.gnu.org/software/grub/manual/html_node/Installing-GRUB-natively.html]

Posted by 구차니