在Ubuntu中安装并配置双系统通常涉及以下步骤:
- 制作启动盘:从Ubuntu官网下载Ubuntu镜像,并使用工具如Rufus或者Ubuntu自带的Startup Disk Creator制作启动盘。
- 分区:在Windows中使用磁盘管理工具(如磁盘管理)来分配未分配空间给Ubuntu安装程序。
- 安装Ubuntu:从启动盘启动电脑,选择“Try Ubuntu”或直接安装,安装时选择“Something else”以手动分区。
- 配置GRUB:安装完成后重启电脑,应该会进入Windows Boot Manager。重新启动时进入GRUB菜单,选择Ubuntu启动。
- 更新GRUB:更新GRUB来识别Windows启动项。
以下是可能用到的命令:
sudo update-grub
如果GRUB没有自动更新,可以手动指定Windows的启动项。编辑/etc/grub.d/40_custom
文件:
sudo nano /etc/grub.d/40_custom
添加以下内容:
menuentry 'Windows Boot Manager (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-D708B81808B80828' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
chainloader +1
}
其中/dev/sda1
是Windows安装的分区。保存文件并运行以下命令更新GRUB:
sudo update-grub
这样,您应该能够在重新启动电脑时看到一个包含Ubuntu和Windows的启动菜单。