Package Details: usb-creator 0.3.16-2

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 of Ubuntu
Upstream URL: https://git.launchpad.net/~usb-creator-hackers/usb-creator/+git/main
Keywords: boot disc image livecd ubuntu
Licenses: GPL3
Submitter: menollo
Maintainer: Rubo
Last Packager: Rubo
Votes: 371
Popularity: 0.006839
First Submitted: 2008-11-11 00:47 (UTC)
Last Updated: 2022-12-31 13:58 (UTC)

Latest Comments

1 2 3 4 5 6 .. 11 Next › Last »

Rubo commented on 2023-11-07 18:12 (UTC)

@mortezae are you by any chance running a newer python version than the one you had when you built this package?

mortezae commented on 2023-11-04 16:02 (UTC)

Traceback (most recent call last):
  File "/usr/bin/usb-creator-gtk", line 28, in <module>
    from usbcreator.frontends.gtk import GtkFrontend
ModuleNotFoundError: No module named 'usbcreator'

Rubo commented on 2022-12-31 13:59 (UTC)

@docontra yeah fixed, sorry, thanks.

docontra commented on 2022-12-31 12:31 (UTC)

The source code for the 0.3.16 tarball seems to be extracting to main instead of trunk (all the cd trunk lines should be cd main).

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.