centos 7 挂载 gpt 移动硬盘


mount -t ntfs-3g /dev/sdc /mnt/disk_12TB_end11AC

NTFS signature is missing.
Failed to mount '/dev/sdc': 无效的参数
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?


parted /dev/sdc print
#看下硬盘的具体分区情况

Model: WD My Book 25ED (scsi)
Disk /dev/sdc: 12.0TB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:

Number  Start   End     Size    File system  Name     标志
 1      1049kB  12.0TB  12.0TB               My Book

mount -t ntfs-3g

NTFS signature is missing. 

yum install ntfsprogs.x86_64

mkntfs /dev/sdc

/dev/sdc is entire device, not just one partition.
Refusing to make a filesystem here!

格式化为ntfs

mkfs.ntfs /dev/sdb

# ntfsfix /dev/sdc
Mounting volume... NTFS signature is missing.
FAILED
Attempting to correct errors... NTFS signature is missing.
FAILED
Failed to startup volume: Invalid argument
NTFS signature is missing.
Trying the alternate boot sector
Unrecoverable error
Volume is corrupt. You should run chkdsk.

 


 

原文地址:https://www.cnblogs.com/emanlee/p/14519105.html