Ubuntu18.04下使用woeusb制作Windows启动盘

第一步:安装woeusb

sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install woeusb

第二步:安装rtorrent

sudo apt install rtorrent
rtorrent xxx.xx.torrent

下载windows10镜像。

第三步:格式化U盘

利用系统自带的disk工具即可。

第四步:网络代理

sudo su
echo $http_proxy
export http_proxy=http://127.0.0.1:8889
export https_proxy=http://127.0.0.1:8889

制作启动盘时候会下载https://raw.githubusercontent.com/pbatard/rufus/master/res/uefi/uefi-ntfs.img,故需要代理(作者有梯子,故设为代理)。

第五步:制作启动盘

umount /dev/sdb
sudo woeusb --device 'cn_windows_10_consumer_editions_version_20h2_updated_feb_2021_x64_dvd_8ddab99d.iso'  /dev/sdb  --tgt-fs  NTFS
  • /dev/sdb 为u盘标识符,利用sudo fdisk -l查询。

你可能感兴趣的:(Ubuntu)