Linux supports U disk NTFS file system format

Linux supports U disk NTFS file system format


1. Online (can connect to external network) method:

1.1、RHEL/CentOS/Anolis/openEuler

yum install ntfs-3g

1.2、Debian/Ubuntu/Deepin

apt install ntfs-3g

1

2. Offline method

Download the ntfs-3g installation package and install it in an offline environment

ntfs-3g upstream address: https://github.com/tuxera/ntfs-3g
https://github.com/tuxera/ntfs-3g

11

Find the source code package, download it, and compile the source code

First make sure the machine has a gcc environment, if you haven’t installed it yourself

yum install gcc
apt install gcc

Source code compilation and installation process

tar -zxvf ntfs-3g-xx.x.gz
cd ntfs-3g-xx.x
./configure
make -j 4
make install -j 4

3. Support U disk

ntfsfix /dev/sdb1

2

3

4


See you next time, bye!

Guess you like

Origin blog.csdn.net/frdevolcqzyxynjds/article/details/131772773