centos8 install ntfs-3g

1.https: //www.tuxera.com/community/open-source-ntfs-3g/ Download the source package on the official website

2. Upload the downloaded file to centos8:

  rz ntfs-3g_ntfsprogs-2017.3.23.gz

3. Unzip the file:

  tar xvf ntfs-3g_ntfsprogs-2017.3.23.gz

4. Enter the unzipped folder:

  cd ntfs-3g_ntfsprogs-2017.3.23

5. Compile and install:

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

6. Inspection after installation:

  ntfs-3g  

      The following prompts indicate that the installation was successful:

  

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

 

Guess you like

Origin www.cnblogs.com/jingzaixin/p/12750494.html