zoukankan      html  css  js  c++  java
  • 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.

     


     

  • 相关阅读:
    调用百度地图API添加点聚合时,marker标注的label标签刷新丢失问题
    redis--基本命令
    centos8安装redis6.0.5
    centos8更改镜像源
    centos8重启网络服务
    搭建eureka高可用
    html5图片缩放后上传blob
    mysql主从复制
    zTree
    datetimepicker使用总结
  • 原文地址:https://www.cnblogs.com/emanlee/p/14519105.html
Copyright © 2011-2022 走看看