热心网友
回答时间:2025-01-14 03:50
方法/步骤
1官网下载ubuntu14.04的iso镜像
2重新命名镜像名字为ubuntu.iso并复制镜像到计算机的一个分区下(不要放在子文件夹下)
3打开现在的ubuntu14.04下的/boot/grub/grub.cfg
$sudo gedit /boot/grub/grub.cfg
4找到grub.cfg文件中的引导菜单配置位置,例如我的是在143行export linux_gfx_mode下面,添加如下内容
menuentry "install ubuntu 14.04" {
search --set -f /ubuntu.iso
loopback loop /ubuntu.iso
set root=(loop)
linux /casper/vmlinuz.efi boot=casper iso-scan/filename=/ubuntu.iso
initrd /casper/initrd.lz
boot
}
5重新启动计算机,选择install ubuntu 14.04 如果一切正常的话会进入ubuntu的livecd桌面
6点击桌面的 安装 Ubuntu 14.04 LTS 进行系统安装
收起