如何三重启动 Ubuntu 14.04 和 freeBSD 10?

如何三重启动 Ubuntu 14.04 和 freeBSD 10?

目前我正在使用 Ubuntu 和 Windows 7。最近我在虚拟机中尝试了 freeBSD,我很喜欢 FreeBSD。

我可以三重启动吗?即 Ubuntu、Windows 和 FreeBSD?

答案1

您必须在 Grub2 菜单中添加 Freebsd。

  1. 打开终端,

    Ctrl++AltT

  2. 运行:

    $ sudo -i
    # nano /etc/grub.d/40_custom

您需要在文件中添加以下行:

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "FreeBSD" {
    insmod ufs2   
    set root=(hd0,1)
    chainloader +1
    }
  1. Ctrl+ O,保存文件。Ctrl+ X,关闭 nano。

  2. 现在只需要更新 Grub

    # update-grub

    注意:更改这些参数: set root=(hd0,1) 适用于您安装的 FreeBSD

相关内容