重新安装ubuntu系统

好久没有进去linux系统,因为要测试3D Slicer软件,登陆ubuntu居然很慢,发现是后台在更新,是版本更新。不能耐受很慢很卡,手动重启后发现不能进入系统。以后系统更新切记不能重启。

用ubuntu desktop iso硬盘启动,总是有各种bug。最后决定用netboot,但是发现默认镜像速度太慢。
查询发现netboot是支持自己设置镜像的。
清华镜像是可以满速下载,首先推荐。

这个方法也可以应用于debian系统。

下载netboot文件

mkdir netboot

cd netboot

wget https://mirror.tuna.tsinghua.edu.cn/ubuntu/dists/devel/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux
wget https://mirror.tuna.tsinghua.edu.cn/ubuntu/dists/devel/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz

引导安装

grub4dos启动u盘

grub4dos下载
https://github.com/chenall/grub4dos/releases
https://blog.csdn.net/weixin_42809008/article/details/81232824

u盘格式化工具
Rufus是一个小巧精致的创建USB启动盘的软件

https://github.com/pbatard/rufus/releases

制作grub4dos启动盘

BOOTICEx64

启动命令

grub4dos

kernel  /boot/linux  mirror/protocol=http mirror/country=manual    mirror/http/hostname=mirrors.tuna.tsinghua.edu.cn     mirror/http directory=/ubuntu 
initrd /boot/initrd.gz

华为MagicBook居然辨识不出来网卡,只能使用iso来安装。

grub2启动命令

linux /diskboot/vmlinuz boot=casper iso-scan/filename=/ubuntu-19.10-desktop-am64.iso
initrd /diskboot/initrd
boot

yake

参考文献:

https://oolap.com/ubuntu-netboot-preseed
https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/

你可能感兴趣的:(重新安装ubuntu系统)