Does not natively support NTFS
CentOS itself is an enterprise version of the system, the NTFS file system is considered unstable, is not conducive to long-term management, so do not support NTFS.
I happen to have a USB drive is NTFS, need to mount, I have studied the way to mount. fuse-ntfs-3g
NTFS-3G is an open-source software that enables NTFS read-write support in operating systems such as Linux, free BSD, Mac OS X, NetBSD, and Haiku. It can read and write NTFS partitions of Windows systems safely and quickly without worrying about data loss.
Let's install fuse-ntfs-3g.
First download the source package via wget
wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
We can see the format is tgz, then tar archive GZ compression
We use
Tar xvf ntfs-3g_ntfsprogs-2017.3.23.tgz
Decompression
Then we can see a folder with a name called ntfs-3g_ntfsprogs-2017.3.23.tgz in the current directory.
We go in and then
./configure
Make&make Install
It's ready. If the installation fails, your GCC compiler may not be installed or configured properly
After installation, you can use the MOUNT-T ntfs-3g/dev/device name to mount the directory
To mount our NTFS device.