无法格式化 USB 驱动器(udisks-error-quark,14)

无法格式化 USB 驱动器(udisks-error-quark,14)

我一直在努力格式化我的 USB 驱动器。我无法格式化它。每当我尝试使用磁盘实用程序时,我都会收到以下错误消息:

Error unmounting /dev/sdc: Command-line `umount  "/media/ramvignesh/AGALYA SRI"' exited with non-zero exit status 1: umount: /media/ramvignesh/AGALYA SRI: device is busy.
        (In some cases useful info about processes that use
         the device is found by lsof(8) or fuser(1))
 (udisks-error-quark, 14)

每当我尝试使用 GParted 时,它都无法正常打开。我得到了以下窗口:

发现 Libparted 错误!- 窗口

帮助我解决问题并重新使用我的 USB 驱动器。

答案1

测试一下:

插入您的 USB 驱动器。

打开终端:

运行:

sudo -i
#Verify that your device is /dev/sdc with fdisk:
fdisk -l
umount /dev/sdc
fdisk /dev/sdc
o ---#Create a new empty partition table
n ---#Create a new partition  
w ---#Write the new partition table and exit 
#Format partition in ext4 filesystem 
mkfs.ext4 /dev/sdc1

fdisk 菜单:

Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

答案2

根据你的评论USB 驱动器已损坏。看起来好像无法在这种状态下对其进行格式化或写入。

一些可以通过尝试读取驱动器来验证这一点的命令是(假设设备节点是/dev/sdc):

sudo fdisk -l /dev/sdc
sudo dd if=/dev/sdc of=/dev/null bs=1m count=1

如果它们因 I/O 错误中止,则设备很可能已损坏。

答案3

放弃使用 USB 后,您可以尝试拆开它,看看它的内存是否是 SD 卡(微型),而不是将其扔掉。有时 USB 读卡器电子设备会出现故障,但内存仍然正常。尝试在适配器或读卡器中使用该卡,看看它是否可用。我曾通过这种方式成功地从一个完全坏掉的 USB 中拯救了一张微型 SD 卡。

答案4

您可能需要尝试使用“清空分区”进行“慢速擦除”。这就是我遇到此问题时解决的方法。

相关内容