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.

     


     

  • 相关阅读:
    http请求消息体和响应消息体
    整型常量
    C语言中字符串后面的'\0'
    String类
    二进制转成十六进制
    http消息头
    NULL和NUL
    拷贝构造函数和赋值表达式
    awk中的FS
    之前给女性网增加的一个滚动展示
  • 原文地址:https://www.cnblogs.com/emanlee/p/14519105.html
Copyright © 2011-2022 走看看