I just ordered a 2.5 inch to 3.5 inch ide adapter so I can plug this drive into my linux pc and hopefully save the data. Its partitioned into system, work and games, I hope that won't matter?
Steven
That doesn't matter, the partitions just shows up in '/dev' as sda1, sda2, sda3 or hda1, hda2, hda3 (depending what linux distro you use).
You have to mount each partition with the command mentioned in previous posts. You also have to create directory's in '/mnt' or whatever directory you want to use as mount point, like system, work and games. Assuming you are using FFS, as root type 'mkdir /mnt/system' and then 'mount -t affs /dev/sda1 /mnt/system' to mount the first partition (system) as '/mnt/system'.