Ubuntu 安裝 WinUSB(WoeUSB)

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
6
git 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
4
git 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
2
3
4
5
6
7
8
9
wget ftp://ftp.ru.debian.org/gentoo-distfiles/distfiles/winusb-1.0.11.tar.gz
tar xvf winusb-1.0.11.tar.gz
cd winusb-1.0.11/src
sed -i -- 's#wxStandardPaths().GetInstallPrefix()#wxStandardPaths::Get().GetInstallPrefix()#g' findFile.cpp
sed -i -- 's#wxStandardPaths().GetDataDir()#wxStandardPaths::Get().GetDataDir()#g' findFile.cpp
cd ..
./configure
make
sudo make install

啟動 同方法二