First partition /dev/sda1 is marked as unknown. Is it Recovery Partition of Vista?
Create two mount_points ( folders ).
Code:
cd media
sudo mkdir sda2 sda3
Open /etc/fstab file with root privileges.
Code:
gksu gedit /etc/fstab
Add these two lines at the end of file.
Code:
/dev/sda2 /media/sda2 ntfs defaults,umask=0 0 0
/dev/sda3 /media/sda3 ntfs defaults,umask=0 0 0
Save file and reboot machine. Vista partitions will be available in /media/sda2 and sda3 folders.
Ubuntu supports NTFS read access out of box. If you want to enable write access too, Install
ntfs-3g package. Replace
ntfs with
ntfs-3g in /etc/fstab file after installing
nfts-3g package.