USB 驱动器无法格式化

USB 驱动器无法格式化

我想格式化我的 USB 来安装 ISO,但它显示:

org.freedesktop.DBus.Python.GLib.Error: Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/dbus/service.py", line 707, in _message_cbretval = candidate_method(self, *args, **keywords)
File "/usr/share/usb-creator/usb-creator-helper", line 274, in Format part.call_set_flags_sync(boot_dos_flag, no_options, None)
GLib.Error: udisks-error-quark: GDBus.
Error:org.freedesktop.UDisks2.Error.
Failed: Error setting partition flags on /dev/sdb2: Command-line `parted --script "/dev/sdb" "set 2 boot off"' exited with non-zero exit status 1: 
Warning: **The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.
(0)**

我的 USB 是 4GB,两天前买的。有办法解决这个问题吗?:)

答案1

尝试使用 gparted 重新格式化。如果不行,尝试使用以下方法擦除所有内容(包括 MBR)

dd if=/dev/zero of=/dev/sdb

(确保您的设备与 sdb 关联...)

usb-creator 对我来说并不总是有效...你可以尝试使用 unetbootin 或者只是

dd if=/path/to/your/iso  of=/dev/sdb

相关内容