使用WoeUSB在Linux上制作Win10启动盘
生活随笔
收集整理的這篇文章主要介紹了
使用WoeUSB在Linux上制作Win10启动盘
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
工作中有時需要配置Windows的開發(fā)/測試環(huán)境,那么如何用Linux制作Win10啟動盤呢?
這里我們需要用到的是一個叫WoeUSB的軟件,有兩種方式安裝:
#pre-install sudo apt-get install python3-pip # install by pip3 sudo pip3 install WoeUSB-ng # install by source code git clone https://github.com/WoeUSB/WoeUSB-ng.git cd WoeUSB-ng sudo pip3 install .
安裝完成之后,可以選擇UI方式安裝,也可以選擇command line的方式。
By UI
在Ubuntu的桌面上找到WoeUSB的圖標(biāo)
后面的就比較傻瓜了,插好U盤,在UI里選擇Windows的ISO文件,選擇NTFS模式,選擇好目標(biāo)設(shè)備(也就是你插入的U盤),點擊Install就可以了。
By Command line
woeusb --device <Your_Win10_iso_path> <Your_USB_Strorage_Path_Default_/dev/sdb> --target-filesystem NTFS
Known issue:
如果報錯:Target device is currently busy, unmount all mounted partitions in target device then try again.
則需要unmount掉U盤已經(jīng)掛載的分區(qū)
umount /dev/sdXN
比如
umount /dev/sdb1
總結(jié)
以上是生活随笔為你收集整理的使用WoeUSB在Linux上制作Win10启动盘的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java基础之ConcurrentHas
- 下一篇: java基础之java内存模型