2

I've been trying to create a bootable pen drive for the windows 10 may update on my ubuntu laptop for my PC. I'm running the 19.04 version of ubuntu. Since the windows iso needs special processes to be burned to the usb I'm required to install the woe-usb open source package.

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

But I keep receiving this error

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package woeusb

I've searched throughout Stack Exchange and ask ubuntu but I have ended up empty-handed.

How To
  • 23

2 Answers2

3

Update 2020-06-21

The PPA ppa:nilarimogard/webupd8 currently contains packages for Ubuntu up to 20.04 LTS.

So you can install WoeUSB as usual:

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

Also the WoeUSB package exists in ppa:tomtomtom/woeusb PPA:

sudo add-apt-repository ppa:tomtomtom/woeusb
sudo apt-get install woeusb

Note: to prepare this answer I have used special PPA search page on LaunchPad.net - https://launchpad.net/ubuntu/+ppas .

N0rbert
  • 99,918
  • Although it was installed ubuntu doesn't open up the app – How To May 23 '19 at 15:14
  • Its GUI executable is named woeusbgui. Did you tried to open it from terminal? Do you get any error messages? – N0rbert May 23 '19 at 15:21
  • woeusbgui: error while loading shared libraries: libwx_gtk2u_adv-3.0.so.0: cannot open shared object file: No such file or directory . – How To May 23 '19 at 15:24
  • This is the error that it gives me should I open it as adminstrator using the ''sudo" command – How To May 23 '19 at 15:25
  • This library is installable with sudo apt-get install libwxgtk3.0-0v5. On my system it was previously installed. Added this to the answer. Will contact PPA owners. – N0rbert May 23 '19 at 15:26
  • The ppa:nilarimogard/webupd8 now have the WoeUSB package. So I have updated the answer. – N0rbert May 23 '19 at 15:52
2

Dependency is added in version 3.3.0-1 in my ppa.

Thx for reporting the issue.