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.

     


     

  • 相关阅读:
    grid列的值格式化
    页面记载给绑定query的grid加filter
    页面加载后从后面带数据到前台
    waf2控件名
    通讯框架选型
    C# 访问修饰符和const、readonly
    ZooKeeper典型应用场景一览
    ZooKeeper典型使用场景一览
    摘的一段关于原型的介绍
    D3.js和three.js
  • 原文地址:https://www.cnblogs.com/emanlee/p/14519105.html
Copyright © 2011-2022 走看看