Windows系统制作Ubuntu启动U盘(命令行)

背景

现今Ubuntu系统的使用越来越多,考虑到日常办公还是用Windows系统,但开发的需求常常要有Linux系统。因此将Linux系统安装到U盘不失为一种好的选择。在Windows系统上制作Ubuntu启动盘其实可以不必借助第三方工具,通过
diskpart 命令即可实现。对于程度员来说也是值得了解的技能点之一。

步骤

  1. 从国内镜像站点下载Ubuntu的安装镜像,如 https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases
  2. 用“运行”打开 diskpart,依次执行如下命令:
    list disk
    select disk 1
    clean
    create partition primary
    active
    format fs=fat32 quick
    exit
    1.从安装U盘启动Ubuntu安装程序,注意要用EFI模式才能启动。插入另一块U盘,将Ubuntu系统安装到另一块U盘上。

参考

  1. https://superuser.com/questions/775017/is-it-possible-to-create-bootable-linux-on-usb-drive-using-windows-command-line
  2. https://www.techrrival.com/create-bootable-pendrive-cmd-windows/

猜你喜欢

转载自www.cnblogs.com/zhaofeng-shu33/p/ubuntu_installation_on_usb_device.html