web-dev-qa-db-ja.com

NTFSドライブをマウントできません-「NTFS署名がありません。」

NTFSドライブを最新の安定版にマウントできませんbuntu Server 14.04

$ Sudo mount /dev/sdc /media/wd3TbHdd -t ntfs
NTFS signature is missing.
Failed to mount '/dev/sdc': Invalid argument
The device '/dev/sdc' 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?

これは私のfdisk出力です(非/dev/sdc情報を削除するように編集されています):

$ fdisk -l

...

WARNING: GPT (GUID Partition Table) detected on '/dev/sdc'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sdc: 3000.6 GB, 3000592982016 bytes
256 heads, 63 sectors/track, 363376 cylinders, total 5860533168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdc1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.

 ...

4台のHDDが接続されており、そのうちの1台はWindowsマシンでは正常に動作しますが、ここではbuntuサーバーでは動作しません。

5
jonney

パーティションではなく、ドライブ全体をハードディスクドライブにマウントしようとしています。 /dev/sdc1の代わりに/dev/sdcをマウントしてみてください。

7
user3901453

私は同じ問題に直面していましたが、さらに悪いことかもしれません。

Disk /dev/sdd: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x2052474d

This doesn't look like a partition table
Probably you selected the wrong device.

Device Boot      Start         End      Blocks   Id  System
/dev/sdd1   ?     6579571  1924427647   958924038+  70  DiskSecure Multi-Boot
Partition 1 does not start on physical sector boundary.
/dev/sdd2   ?  1953251627  3771827541   909287957+  43  Unknown
Partition 2 does not start on physical sector boundary.
/dev/sdd3   ?   225735265   225735274           5   72  Unknown
Partition 3 does not start on physical sector boundary.
/dev/sdd4      2642411520  2642463409       25945    0  Empty

Partition table entries are not in disk order
Note: sector size is 2048 (not 512)

しかし、私はこれからわずかなMODで上記のコマンドを実行しました:

Sudo mount /dev/sdc /media/wd3TbHdd -t ntfs

これに:

hddをマウントするディレクトリを作成します:mkdir /media/tmp/

次にSudo mount /dev/sdX /media/tmp -t ntfs

0
remyx

NTFSファイルシステムにも同じ問題があり、マウントはファットファイルシステムとして機能していました。

mkdir ~/bkpup
Sudo mount -t vfat /dev/sdb1 ~/bkpup/
0
TilakVarisetty