grub-install 이라는 것을 이용해서 특정 장치에 grub를 설치할수 있다.
아래의 예제는 플로피 디스크에 grub를 설치하는 예제이다.
마운트가 /mnt에 되었으므로 grub-install시에 --root-directory를 /mnt로 지정해준다.
[링크 : http://www.gnu.org/software/grub/manual/html_node/Installing-GRUB-natively.html]
아래의 예제는 플로피 디스크에 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] |
'Linux' 카테고리의 다른 글
MAKEDEV(8) 우분투, 페도라 옵션차이 (0) | 2010.05.15 |
---|---|
dosboot / netboot / fatboot (0) | 2010.05.04 |
ubuntu 9.10 에서 APM + viewvc + cvsgraph 돌리기 (0) | 2010.04.28 |
enscript (0) | 2010.04.28 |
readlink() 와 심볼릭 링크, 그리고 inode(아이노드) (0) | 2010.04.20 |