Примонтировать раздел NTFS в Linux
Установим необходимые утилиты
yum -y install fuse ntfs-3g
Смотрим какой раздел диска необходимо монтировать
# fdisk -l Disk /dev/sda: 80.0 GB, 80025280000 bytes 255 heads, 63 sectors/track, 9729 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 1912 15358108+ 7 HPFS/NTFS /dev/sda2 1913 9729 62790052+ 5 Extended /dev/sda5 1913 9729 62790021 7 HPFS/NTFS
Монтируем NTFS раздел
ntfs-3g /dev/sda5 /win/
Можно и так
mount -t ntfs-3g /dev/sda5 /win