centos8 安装ntfs-3g

1.https://www.tuxera.com/community/open-source-ntfs-3g/  在官网下载源码包

2.将下载的文件上传给centos8  :

  rz ntfs-3g_ntfsprogs-2017.3.23.gz

3.解压文件:

  tar xvf ntfs-3g_ntfsprogs-2017.3.23.gz

4.进入解压文件夹:

  cd ntfs-3g_ntfsprogs-2017.3.23

5.编译安装:

  ./configure
  make
  make install # or 'sudo make install' if you aren't root

6.安装完成后检验:

  ntfs-3g  

      提示如下内容,说明安装成功:

  

ntfs-3g: No device is specified.

ntfs-3g 2017.3.23 integrated FUSE 27 - Third Generation NTFS Driver
        Configuration type 1, XATTRS are on, POSIX ACLS are off

Copyright (C) 2005-2007 Yura Pakhuchiy
Copyright (C) 2006-2009 Szabolcs Szakacsits
Copyright (C) 2007-2017 Jean-Pierre Andre
Copyright (C) 2009 Erik Larsson

Usage:    ntfs-3g [-o option[,...]] <device|image_file> <mount_point>

Options:  ro (read-only mount), windows_names, uid=, gid=,
          umask=, fmask=, dmask=, streams_interface=.
          Please see the details in the manual (type: man ntfs-3g).

Example: ntfs-3g /dev/sda1 /mnt/windows

News, support and information:  http://tuxera.com
原文地址:https://www.cnblogs.com/jingzaixin/p/12750494.html