web-dev-qa-db-ja.com

USBスティックをマウントできない

USBスティックをフォーマットしましたが、マウントできません。

コマンドSudo fdisk -lはこれを出力します(sdcおよびsdc1に関する情報のみを表示するように短縮されます):

Disk /dev/sdc: 8075 MB, 8075120640 bytes
64 heads, 32 sectors/track, 7701 cylinders, total 15771720 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x22fb6a74

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1   *           0      407551      203776   17  Hidden HPFS/NTFS

Disk /dev/sdc1: 208 MB, 208666624 bytes
64 heads, 32 sectors/track, 199 cylinders, total 407552 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x22fb6a74

     Device Boot      Start         End      Blocks   Id  System
/dev/sdc1p1   *           0      407551      203776   17  Hidden HPFS/NTFS

Sudo mount -t ntfs /dev/sdc1 /mntでsdc1をマウントしようとすると、出力は次のようになります。

NTFS signature is missing.
Failed to mount '/dev/sdc1': Invalid argument
The device '/dev/sdc1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?

編集:

コマンドSudo lsblk -fの出力は次のとおりです。

NAME   FSTYPE LABEL MOUNTPOINT
sda                 
├─sda1 ext4         /
├─sda2              
└─sda5 swap         [SWAP]
sdb                 
├─sdb1              
└─sdb5 ext4         /media/disc_d
sdc                 
└─sdc1              
sr0 
4
Cikson

USBディスクを誤ってフォーマットしました:Hidden HPFS/NTFSパーティションがあります。

  1. gpartedを開きます
  2. 右上隅の正しいディスクに移動します。

enter image description here

  1. deviceに移動してcreate partition tableを選択し、msdosを選択します
  2. 中央の大きな空の正方形を右クリックします。

enter image description here

「フォーマット」を選択してFAT32を取得します

できた! ;-)

4
Fabby