Winusb(WoeUSB) 是一個在 Ubuntu 下把 Windows ISO/DVD 製作成 USB 安裝碟的工具,本篇要介紹如何在 Ubuntu 下編譯安裝 Winusb。
本篇使用 Ubuntu 16.04 安裝 Winusb
以下方法都要裝這個相依套件1
sudo apt-get install libwxgtk3.0-dev
方法一,編譯安裝 slacka 的 WoeUSB
github: slacka/WoeUSB
編譯1
2
3
4
5
6git clone https://github.com/slacka/WoeUSB
cd WoeUSB
autoreconf --force --install # Most non-Debian derived distros will need this
./configure
make
sudo make install
啟動1
sudo woeusbgui
方法二,編譯安裝 aaptel 的 WoeUSB
github: aaptel/WinUSB
版本1.0.11, 比方法三1.0.11版 多了一些修正
編譯1
2
3
4git clone https://github.com/aaptel/WinUSB
./configure
make
sudo make install
啟動1
sudo woeusbgui
方法三,編譯安裝 debian 管理包的 WoeUSB
參考這篇 How to Install Winusb on Ubuntu 16.04
1 | wget ftp://ftp.ru.debian.org/gentoo-distfiles/distfiles/winusb-1.0.11.tar.gz |
啟動 同方法二