centos6 挂载NTFS磁盘mount NTFS

服务器之前使用的是Windows系统,由于性能及各种原因更换操作系统为:centos 6.8;更改系统为原Windows下的NTFS格式的磁盘无法被直接挂载使用,原因:Centos默认是不支持NTFS磁盘格式的,解决的方法之一就是安装NTFS-3G模块.

1.源码下载安装:

下载地址:NTFS-3G官方下载地址:

解压:tar xzvf ntfs-3g_ntfsprogs-2014.2.15.tgz

进入解压目录,切换到root用户,依次执行命令

./configure
make && make install

使用:fdisk -l

Disk /dev/vda: 107.4 GB, 107374182400 bytes
255 heads, 63 sectors/track, 13054 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00020f78

Device Boot Start End Blocks Id System
/dev/vda1 * 1 13055 104855552 83 Linux

Disk /dev/vdb: 214.7 GB, 214748364800 bytes
255 heads, 63 sectors/track, 26108 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xd1277645

Device Boot Start End Blocks Id System
/dev/vdb1 1 26109 209713152 7 HPFS/NTFS

创建用于的挂载点:mkdir /mnt/DATA

挂载:mount -t ntfs-3g /dev/vdb1 /mnt/DATA

开机自动挂载:vim /etc/fstab

添加内容到最后:

/dev/vdb1     /mnt/DATA  ntfs-3g  defaults  0  0

2.用yum 安装,首先切换到root用户,添加软件源

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo

针对centos5.X/7.X版本将上面对应的数字改成5/7即可

运行命令 yum update; yum install ntfs-3g

命令运行结束后即可以支持NTFS

此条目发表在Linux分类目录。将固定链接加入收藏夹。

发表回复