You can also hang the NTFS partition without recompile the kernel! Let's go here http://linux-ntfs.sourceForge.Net/info/redhat.html to download an RPM package installation, and then the following article: Method: View the location of the NTFS partition [root @ linuxsir01 boot] # / sbin / fdisk -l Disk / dev / hda: 40.0 GB, 40020664320 bytes 255 heads, 63 sectors / track, 4865 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System / dev / hda1 * 1 740 5944018 7 HPFS / NTFS / DEV / HDA2 741 4865 33134062 f Win95 ext'd (lba) / dev / hda5 741 1378 5124703 7 HPFS / NTFS / DEV / HDA6 1379 2143 6144831 B Win95 FAT32 / DEV / HDA7 2144 3163 8193118 83 Linux / dev / hda8 3164 4056 7172991 83 Linux / dev / hda9 4057 4796 5944018 83 Linux / dev / hda10 4797 4865 554211 82 Linux swap in this case, we can see Yes / DEV / HDA1 and / DEV / HDA5 partitions are NTFS format. Because Mount is partitioned, it is to be a corresponding folder. So we should build a folder for each partition in Linux, and there is no relationship. In this example, I will build a / mnt directory [root @ Linuxsir01 MNT] # mkdir Winc wind [root @ Linuxsir01 MNT] # ls cdrom WinC WIND We change the permissions for WinC and Wind [root @ Linuxsir01 MNT] # Chmod 777 WinC Wind then we change / etc / fstab file, let the loaded NTFS disk reach the following two objects: support all users readable, support Chinese, we will add the following according to the previous FDisk -l he Mkdir, add the following Both lines. / DEV / HDA1 / MNT / WINC NTFS UMASK = 0, RW, IOCHARSET = GB2312 0 0 / DEV / HDA5 / MNT / WIND NTFS UMASK = 0, RW, IOCHARSET = GB2312 0 0 This restart system, the system can be loaded automatically. .