|
Re: Partitioning problems
Quote:
Originally Posted by Socrates440
What is it? What's on it?
|
You'd need to ask a recent Windows expert for details, but you could get a fair idea perhaps by examining it with Linux:
Code:
mkdir /tmp/sda1_mnt
sudo mount -o ro /dev/sda1 /tmp/sda1_mnt
# Have a look around /tmp/sda1_mnt with the file manager of your choice.
sudo umount /tmp/sda1_mnt
rmdir /tmp/sda1_mnt
Last edited by Gareth Jones; 31st May 2012 at 06:12 PM.
Reason: Add "-o ro" mount option, just in case.
|