Mount the NTFS file system in Ubuntu11.04: 1. install ntfs-3g (installed by default) 2. use fdisk-l to view the partition information of the hard disk. for example: Disk/dev/hda: 80.0 GB, 80026361856bytes255heads, 63 sectors/track, 9729 cylindersUnits = cylindersof16065 * 512
How to mount the NTFS file system in Ubuntu 11.04:
1. Install ntfs-3g (installed by default)
2. Use fdisk-l to view the partition information of the hard disk.
For example:
Disk/dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065*512 = 8225280 bytes
Device Boot Start End Blocks Id System
/Dev/hda1*1 1499 12040686 7 HPFS/NTFS
/Dev/hda2 1500 9728 66099442 + f W95 Ext 'd (LBA)
/Dev/hda5 1500 4096 20860371 7 HPFS/NTFS
/Dev/hda6 4097 6651 20523006 7 HPFS/NTFS
/Dev/hda7 6652 8498 14835996 7 HPFS/NTFS
/Dev/hda8 8499 8511 104391 83 Linux
/Dev/hda9 8512 9597 8723263 + 83 Linux
/Dev/hda10 9598 9728 1052226 82 Linux swap
3. Mount the required partition to the specified directory.
For example, mount hda1 (# mount/dev/hda1/mnt/c ).
4. Set automatic mounting upon startup. There are two methods:
1) Add the mount command to the startup script of the linux system (# echo mount/dev/hda1/mnt/c>/etc/rc. local ).
2) modify the file partition table (/etc/fstab) and add the mount command.