Article Title: Allow linux to read and write data in the ntfs partition. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
I. First, we have to install the NTFS package, that is, install an NTFS Driver with LINUX.
NTFS Installation Method
1. Use uname-a to view a kernel version.
2. Continue again
3. rpm-ivh ntfs2.18x. rpm
Now, you can mount the ntfs partition in your linux system (but you can only read but not write it). There are many tutorials on how to mount the partition.
Ii. Download the FUSE package, http://fuse.sourceforge.net/
Note: You can only download the fuse-2.7.4 version. I do not know why the FUSE cannot be found after installing the latest version 2.8.3.
1. tar zxvf fuse-2.7.4
2. cd fuse-2.7.4
3../configure
Make
Make install
3. Download NTFS-3G, http://www.tuxera.com/community/ntfs-3g-manual/
Tar-xvzf ntfs-3g-*** .tar.gz
Cd ntfs-3g -***
./Configure
Make
Make install
Now, you can mount and write and modify NTFS.
Usage
1. Manual mounting
Mount. ntfs-3g/dev/sda5 (NTFS partition)/media/win/e/(mount point)
2. automatic mounting upon startup
Vi/etc/fstab
/Dev/sda5/media/win/e/ntfs-3g slient, umask = 0, locale = zh_CN.utf8 0 0
Thank you for reading and correcting them ~~~!!!