web-dev-qa-db-ja.com

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 Bug Found! - window

問題を解決し、USBドライブを再利用してください。

2
Ramvignesh

コメント によると、USBドライブが壊れています。この状態ではフォーマットまたは書き込みができないように見えます。

ドライブを読み取ろうとすると、これを確認できるコマンドがいくつかあります(デバイスノードが/dev/sdcであると仮定):

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

I/Oエラーで中断した場合、デバイスが壊れている可能性があります。

1
David Foerster

これをテストします:

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)
4
kyodake

USBスティックを捨てるのではなく、あきらめた後、メモリをsdカード(マイクロ)の形であるかどうかを確認するために、それを分解してみることができます。 USBリーダーの電子回路が故障する場合がありますが、メモリはまだ問題ありません。アダプタまたはカードリーダーでカードを使用して、使用可能かどうかを確認してください。完全に死んだUSBからこの方法で1つのmicro sdカードを正常に保存しました。

1
ubfan1

「空のパーティション分割」で「低速消去」を試してみるとよいでしょう。この問題に出会ったとき、それが私がそれを解決した方法でした。

0
John