Use NTFSMOUNT to mount the NTFS file system writable in linux

Source: Internet
Author: User
Use NTFSMOUNT to mount the NTFS file system that can be written in linux-Linux Enterprise Application-Linux server application information. The following is a detailed description. Many common users use the coexistence of two systems (Windows and Linux). In general, the partitions used in linux are not very large, and most of them are distributed to windows, especially in today's rapid development of hardware, GB hard disk is strange, FAT32 supports space and file size restrictions (relatively disgusting), have to use NTFS. (For more information about the quota supported by different file systems, see the previous blog .) As a result, the file system that can be directly attached to linux is FAT32 and can be written on FAT32. Although the kernel can be configured to support NTFS, first, the process is troublesome. In severe cases, the system can be mounted. Second, after mounting, the system can only be read.

My solution is to use the ntfsmount project. (Project home page: http://www.linux-ntfs.org/doku.php? Id = ntfsmount)

The detailed process is as follows:

1. Install ntfsmount

A. Install fuse, to (http://fuse.sourceforge.net/) download a fuse Installation File, such as: fuse-2.7.4.tar.gz, unzip and install:

Tar-zxvf fuse-2.7.4.tar.gz

Cd fuse-2.7.4

./Configure

Make

Make install

B. Install ntfsprogs, to (http://sourceforge.net/project/s... 56&package_id=14232download A ntfsprogsinstallation file, such as ntfsprogs-2.0.0.tar.gz, unzip and install:

Tar-zxvf ntfsprogs-2.0.0.tar.gz

Cd ntfsprogs-2.0.0

./Configure -- enable-fuse-module

Make

Make install

2. Use ntfsmount to mount an existing NTFS partition

A. Temporary mounting

Mkdir/mnt/winlarge

Ntfsmount/dev/sdaX/mnt/winlarge

Ready for use

B. Use fstab to enable auto-start mounting

Vim/etc/fstab

Add content similar to the following:

/Dev/sdaX/mnt/winlarge fuse. ntfs locale = en_US.utf8 0 0

Fuse. ntfs refers to the introduction of fuse to ntfs. The rest are described on the Internet.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.