I think you could boot up with ubuntu, then mount the partition with the files you want to save. For example:
Code:
sudo mount /dev/hda1 /mnt/hda1
Replace hda1 with the correct partition name. Also if /mnt/<partition-name-here> does not exist you would have to create it. If your not sure what partition to mount you can view your harddrives partitions like this:
Example data
Code:
sudo fdisk -l
Disk /dev/sda: 82.3 GB, 82348277760 bytes
255 heads, 63 sectors/track, 10011 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1543 12289725 83 Linux
/dev/sda3 1544 1670 1020127+ 83 Linux
/dev/sda4 1671 10011 66999082+ 5 Extended
/dev/sda5 1671 3200 12289693+ 83 Linux
/dev/sda6 3201 3965 6144831 83 Linux
Disk /dev/sdb: 82.3 GB, 82348277760 bytes
255 heads, 63 sectors/track, 10011 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 126 1012063+ 82 Linux swap
/dev/sdb2 127 5098 39937590 83 Linux
You would need to know which partition has your files on it. If you have not created a bunch of partitions then it will be easy to choose the right one. Otherwise you may have to mount a couple till you find the right one. I think with ubuntu you should be able to plug the usb drive and it will auto mount. If not post again and maybe I can help you with that.
Best Regards,
Fordeck