Package Details: usb-creator 0.4.0-3

Git Clone URL: https://aur.archlinux.org/usb-creator.git (read-only, click to copy)
Package Base: usb-creator
Description: Create bootable USB from a LiveCD or disc image ISO
Upstream URL: https://git.launchpad.net/~usb-creator-hackers/usb-creator/+git/main
Keywords: boot disc image livecd ubuntu
Licenses: GPL3
Submitter: menollo
Maintainer: envolution
Last Packager: envolution
Votes: 373
Popularity: 1.54
First Submitted: 2008-11-11 00:47 (UTC)
Last Updated: 2024-12-03 11:55 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 12 Next › Last »

Rubo commented on 2022-12-31 11:54 (UTC)

@desowin fixed, thanks.

desowin commented on 2022-12-31 11:41 (UTC)

File "/usr/lib/python3.10/site-packages/usbcreator/frontends/gtk/frontend.py", line 563, in add_file_source_dialog
    self.backend.add_image(filename)
  File "/usr/lib/python3.10/site-packages/usbcreator/backends/base/backend.py", line 42, in add_image
    label = self._is_casper_cd(filename)
  File "/usr/lib/python3.10/site-packages/usbcreator/backends/udisks/backend.py", line 154, in _is_casper_cd
    subprocess.run(cmd, stderr=None, stdout=None)
  File "/usr/lib/python3.10/subprocess.py", line 503, in run
    with Popen(*popenargs, **kwargs) as process:
  File "/usr/lib/python3.10/subprocess.py", line 971, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "/usr/lib/python3.10/subprocess.py", line 1847, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'osirrox'

To fix, install libisoburn.

Tornem commented on 2022-07-12 11:46 (UTC) (edited on 2022-07-12 11:46 (UTC) by Tornem)

An unhandled exception occurred:
module 'collections' has no attribute 'Callable'

usbcreator/misc.py, line 44 fast fix problem :

- return isinstance(obj, collections.Callable)

to

+ return isinstance(obj, collections.abc.Callable)

sshaikh commented on 2022-02-24 16:31 (UTC)

I'm seeing:

An unhandled exception occurred:
module 'collections' has no attribute 'Callable'

with usb-creator-kde

RogueGirl commented on 2021-06-02 17:45 (UTC)

gtk frontend is broken for some reason use kde frontend

TheCloudt commented on 2020-05-17 09:16 (UTC)

Seems to me that python-pyqt5 is a missing dependency.

Dijx commented on 2020-01-30 15:03 (UTC) (edited on 2020-01-30 15:14 (UTC) by Dijx)

To fix ModuleNotFoundError: No module named 'sip' remove or comment line #import sip, then add line from PyQt5 import sip. I suppose the same would go for gtk version. But then, some other thing seems not working...

ericthefish commented on 2019-04-01 09:09 (UTC)

It seems that python-sip should also be listed as a dependency for this.

$ usb-creator-kde 
Traceback (most recent call last):
  File "/usr/bin/usb-creator-kde", line 21, in <module>
    import sip
ModuleNotFoundError: No module named 'sip'

Maelan commented on 2018-10-24 20:47 (UTC) (edited on 2018-10-24 20:57 (UTC) by Maelan)

I get a compile-time error, while running package() :

Traceback (most recent call last):
  File "setup.py", line 2, in <module>
    from DistUtilsExtra.command import *
ModuleNotFoundError: No module named 'DistUtilsExtra'

even though package python-distutils-extra (version 2.39-3) is properly installed.

carstene1ns commented on 2018-10-08 10:01 (UTC)

Sorry for the lack of updates here, should work again as intended.