Home > Article > Operation and Maintenance > Is ntfs-3g available in linux?
You can use "ntfs-3g" in Linux; "ntfs-3g" is an open source software that can implement NTFS read and write support in operating systems such as Linux and "Free BSD". In Linux Use a driver that can provide NTFS partitions and use "yum install ntfs-3g" to install and use the software.
#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.
On Linux, you can use NTFS-3G to mount NTFS formatted hard disk.
NTFS-3G is an open source software that can implement NTFS read and write support in operating systems such as Linux, Free BSD, Mac OSX, NetBSD and Haiku. It can safely and quickly read and write NTFS partitions of Windows systems without worrying about data loss.
NTFS-3G is an open source project developed and maintained by Tuxera. The purpose is to provide drivers for NTFS partitions for Linux. It can read and write the file system of Windows NT (including Windows 2000, Windows XP, Windows Server 2003 and Windows Vista) safely and at high speed.
Installation
The Ubuntu system comes with ntfs-3g by default. In CentOS, you can use the yum command to install it directly
yum install -y ntfs-3g
If No appears package ntfs-3g available. The error is actually due to the lack of epel-release. Just upgrade and then install it.
yum update yum install epel-release -y
Use
First use fdisk -l to check the drive letter of the hard disk to be mounted. For example, for /dev/sdb
mount -t ntfs-3g /dev/sdb /data
extension use:
Set automatic mounting at boot
Open the /etc/fstab file, in Finally add
# 只读模式挂载 /dev/sdb /data ntfs-3g ro,umask=0222,defaults 0 0 # 读写模式挂载 /dev/sdb /data ntfs-3g rw,umask=0000,defaults 0 0
Recommended learning: Linux video tutorial
The above is the detailed content of Is ntfs-3g available in linux?. For more information, please follow other related articles on the PHP Chinese website!