Gentoo使用grub2

来源:互联网 发布:免费语音合成软件 编辑:程序博客网 时间:2024/05/16 12:55

由于某些原因,grub2没有加入Gentoo portage稳定源中

但这并不能阻止我们使用,使用方法如下:

一. 自己编译grub2

1.从 grub官网 下载 源码 (目前是grub-1.99), ftp站点

2. 编译安装

[plain] view plaincopyprint?
  1. # tar -zxvf grub-1.99.tar.gz  
  2. # cd grub-1.99  
  3. # ./configure  
  4. # make  
  5. # make install  
  6. # grub-mkconfig  # 自己编译的没有 update-grub 命令  

二. 用 Gentoo 的 emerge 命令安装(参考:http://en.gentoo-wiki.com/wiki/Grub2)

1.运行以下命令:

[plain] view plaincopyprint?
  1. echo "sys-boot/grub:2" >> /etc/portage/package.accept_keywords   
  2. echo "sys-boot/grub:2" >> /etc/portage/package.unmask   
  3. emerge -av sys-boot/grub:2   

2.得到如下提示:

[plain] view plaincopyprint?
  1. nehc ~ # emerge -av sys-boot/grub:2   
  2.   
  3. These are the packages that would be merged, in order:   
  4.   
  5. Calculating dependencies... done!   
  6. [ebuild  N    ~] sys-boot/os-prober-1.47  25 kB   
  7. [ebuild  N     ] dev-libs/lzo-2.06  USE="-examples -static-libs" 570 kB   
  8. [ebuild     U ~] media-fonts/unifont-5.1.20080914 [1.0-r4] USE="X" 8,351 kB   
  9. [ebuild  N     ] dev-python/pycrypto-2.3  USE="gmp -doc" 324 kB   
  10. [ebuild  N     ] dev-python/setuptools-0.6.21  391 kB   
  11. [ebuild  N     ] dev-scheme/guile-1.8.8-r1  USE="deprecated nls regex threads -debug -debug-freelist -debug-malloc -discouraged -emacs -networking" 3,864 kB   
  12. [ebuild  N     ] dev-libs/libburn-1.0.0  USE="-debug -track-src-odirect" 792 kB   
  13. [ebuild  N     ] sys-devel/autogen-5.11.5  1,016 kB   
  14. [ebuild  N     ] dev-python/paramiko-1.7.7.1  USE="-doc -examples" 804 kB   
  15. [ebuild  N     ] dev-libs/libisofs-1.0.0  USE="acl zlib -debug -verbose-debug -xattr" 669 kB   
  16. [ebuild  N     ] dev-libs/libisoburn-1.0.0  USE="acl readline zlib -debug -external-filters -external-filters-setuid -xattr" 1,015 kB   
  17. [ebuild  N     ] dev-vcs/bzr-2.4.1  USE="sftp -bash-completion -curl -doc -emacs -test" 7,110 kB   
  18. [ebuild  NS   *] sys-boot/grub-9999 [0.97-r10] USE="nls sdl truetype -custom-cflags -debug -device-mapper -efiemu -static" GRUB_PLATFORMS="-coreboot -efi-32 -efi-64 -emu -ieee1275 -multiboot -pc -qemu -qemu-mips -yeeloong" 0 kB   
  19.   
  20. Total: 13 packages (1 upgrade, 11 new, 1 in new slot), Size of downloads: 24,924 kB   
  21.   
  22. The following keyword changes are necessary to proceed:   
  23. #required by sys-boot/grub-9999[truetype], required by sys-boot/grub:2 (argument)   
  24. >=media-fonts/unifont-5.1.20080914 ~amd64   
  25. #required by sys-boot/grub-9999, required by sys-boot/grub:2 (argument)   
  26. >=sys-boot/os-prober-1.47 ~amd64   
  27. #required by sys-boot/grub:2 (argument)   
  28. >=sys-boot/grub-9999 **   
  29.   
  30. NOTE: This --autounmask behavior can be disabled by setting   
  31.       EMERGE_DEFAULT_OPTS="--autounmask=n" in make.conf.   
  32.   
  33. Use --autounmask-write to write changes to config files (honoring CONFIG_PROTECT).   

3.解决依赖(注意上一条命令的提示)

[plain] view plaincopyprint?
  1. # emerge --autounmask-write sys-boot/grub:2  
  2.   
  3. # etc-update  
  4. .....                   # 此处选择-3用新配置文件替换掉旧的  


4.安装

[plain] view plaincopyprint?
  1. # emerge sys-boot/grub:2  

如下图:




5.安装、配置

[plain] view plaincopyprint?
  1. # grub2-mkconfig -o /boot/grub2/grub.cfg  #生成配置文件 grub.cfg  
  2.   
  3.   
  4. # grub2-install --no-floppy /dev/sda      #安装到MBR  


6. 大功告成,可以reboot体验了



原创粉丝点击