Linux disk partition and mobile hard disk mounting method

  

My computer 80G hard disk windows to pull a primary partition two extended partitions, all nt format partition. The rest of the total score for Linux pull, I have a mobile hard disk 80g to do their own pull two areas, a FAT32, an NTFS (60g main movie hehe I love to watch) and a 2g U disk and several small U disk is basically FAT32.


First, I typed yum install ntfs-3g3 in the linux terminal.

Then I modified /etc/fstab and added


LABEL=//ext3 defaults 1 1

devpts /dev/pts devpts gid=5,mode=620 0 0

tmpfs /dev/shm tmpfs defaults 0 0

Proc /proc proc defaults 0 0

sysfs /sys sysfs defaults 0 0

LABEL=SWAP-hda4 swap swap defaults 0 0

/dev/hda1 /mnt/hda1 Ntfs umask=000,nls=utf8

/dev/hda5 /mnt/hda5 ntfs umask=000,nls=utf8

/dev/hda6 /mnt/hda6 ntfs umask=000,nls =utf8

/dev/sda2 /mnt/Y ntfs umask=000,nls=utf8


You may see that the first three behind me are the head of the system hard drive. The last one of the three NTFS partitions is the second NTFS partition on my mobile hard disk.

This way, when my system starts, I can automatically mount the NTFS partition of the local hard disk and the mobile hard disk automatically and display Chinese normal.


But I started not to do this

LABEL =//ext3 defaults 1 1

devpts /dev/pts devpts gid=5,mode=620 0 0

tmpfs /dev/shm tmpfs defaults 0 0

proc /proc proc defaults 0 0

sysfs /sys sysfs defaults 0 0

LABEL=SWAP-hda4 swap swap defaults 0 0

/dev/hda1 /mnt/hda1 ntfs Umask=000,nls=utf8

/dev/hda5 /mnt/hda5 ntfs umask=000,nls=utf8

/dev/hda6 /mnt/hda6 ntfs umask=000,nls= Utf8


This is a problem. The first FAT32 partition on the first hard disk is normally mounted and can be read and written. The second NTFS partition can only be mounted manually and mounted. The Chinese name directory cannot be displayed, but hda1, hda2, and hda3 can display the Chinese name directory normally. I can't understand it.

Then I

LABEL=//ext3 defaults 1 1

devpts /dev/pts devpts gid=5,mode=620 0 0

Tmpfs /dev/shm tmpfs defaults 0 0

proc /proc proc defaults 0 0

sysfs /sys sysfs defaults 0 0

LABEL=SWAP-hda4 swap swap defaults 0 0

/dev/hda1 /mnt/hda1 ntfs umask=000,nls=utf8

/dev/hda5 /mnt/hda5 ntfs umask=000,nls=utf8

/dev/hda6 /mnt/hda6 ntfs umask=000,nls=utf8

/dev/sda1 /mnt/x vfat umask=000,nls=utf8

/dev/sda2 /Mnt/Y ntfs umask=000,nls=utf8


This is a good NTFS partition to pull the FAT32 partition but it prompts an error, there is no way to use my original method to pull

A good friend who has learned to explain (I guess it may be that I set up the FAT32 partition automount and the system's automount conflict)

Copyright © Windows knowledge All Rights Reserved