转自:https://www.cnblogs.com/java-h/p/10583932.html
CentOS 7 下默认不支持挂载 NTFS 格式分区。因此我们需要一个 NTFS-3G 工具,并编译它之后在 mount就可以了。
安装ntfs-3g步骤:
1、.首先下载 NTFS-3G 工具之后进行解压
wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
tar -xvf ntfs-3g_ntfsprogs-2017.3.23.tgz
2、编译并进行安装
进入ntfs-3g_ntfsprogs-2014.2.15文件夹中
./configure && make && make install
ps:如果提示没有gcc,则yum install gcc* 将编译环境安装好在执行一次上面的命令
上面的命令也可以分三次执行完成
./configure
make
make install
3.挂载NTFS
mount -t ntfs-3g /dev/sda2 /mnt/Windows
ps:mount重启之后就会失效
3、解除挂载
umount /dev/sdb2