RE: Use Ubuntu Live to backup data
Make a directory for the mount:
mkdir /mnt/win
Change hda1 with corresponding hdd, usually the a is the hard drive "id" and the 1 is the partition number so lets say you want to make parition one & two, just create other dirs but instead of hda1, try hda2.
If your filesystem is fat32:
mount -t vfat /dev/hda1 /mnt/win
If your filesystem is ntfs:
mount -t ntfs /dev/hda1 /mnt/win
Check if it is mounted:
cd /mnt/win
ls -al
|