背景

现今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模式才能启动。可以选择将Ubuntu装到(移动)硬盘上或 通过Try Ubuntu 启动仅仅在内存中的OS,进行一些相关的调试。

参考

  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/
posted on 2018-11-04 13:59  赵丰数33  阅读(420)  评论(0编辑  收藏  举报