I havn't noteced your NTFS volume
try the following:
#sudo fdisk -l
this will show you THE device of your NTFS Hard Disk of 160Gb
you'll see something like this
Code:
/dev/hda6 952 991 321268+ 82 Linux swap / Solaris
/dev/hda7 992 1932 7558551 83 Linux
/dev/hda8 1933 4865 23559291 c W95 FAT32 (LBA)
then pick the divice you are interested in and mount it
I've got /dev/hda8 with FAT32 file system
in order to mount it I have to do this
Code:
#sudo mount /dev/hda8 /mnt/fat
and if you want to write on NTFS volume you'll need ntfs3g (
http://www.ntfs-3g.org)
Code:
#sudo apt-get install ntfs-3g
#sudo ntfs-3g /dev/hd(NTFS-vol) /media/ntfs
btw - it's all written in man mount and in man ntfs-3g
pls read it