环境 ubuntu 12.04 桌面版
由于我的ubuntu 是安装在vmware 上,如果接入移动硬盘后,它没有办法自动识别ntfs 格式的文件系统,导致mount 盘失败
从网上找到一个方法
首先查看一下你的硬盘在linux 里面叫什么名字
fdisk -l
它会打印出所有识别到的硬盘,然后你通过硬盘大小,找一下你自己新增磁盘
例如:
Disk /dev/sdc: 750.2 GB, 750156252672 bytes 255 heads, 63 sectors/track, 91201 cylinders, total 1465148931 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x212fe229 Device Boot Start End Blocks Id System /dev/sdc1 2048 1465145343 732571648 7 HPFS/NTFS/exFAT
我知道了新增磁盘是 /dev/sdc1
mount盘
新建一个/tt 的目录,然后指定磁盘的文件格式,再将磁盘mount 上去
mkdir /tt mount -t ntfs-3g /dev/sdc1 /tt -o force