I want to install Ubuntu inside Windows.
However, if Windows gets corrupted, how can data from the Ubuntu system be recovered?
I want to install Ubuntu inside Windows.
However, if Windows gets corrupted, how can data from the Ubuntu system be recovered?
The data can be recovered if Windows is unbootable but you can still access the filesystem. All of the data is stored inside of a filesystem image called C:\ubuntu\disks\root.disk
.
Simply boot an Ubuntu livecd, mount the NTFS
partition and then mount that image (sudo mount -o loop /path/to/root.disk /mnt
), get to where you mounted it (/mnt
if you used the above command) and backup your data.
If you cannot mount the root.disk
and you suspect filesystem corruption, then you should do the following (the order is important):
chkdsk /r
from Windows to fix any NTFS
file system corruptionfsck
the root.disk
from a live CD in case there is ext3/4
corruptionIf there is no file system corruption you can also access the root.disk
from within Windows using ext2read
root.disk
first, and then you need to mount the root.disk
with the -o loop
option.
– bcbc
Jan 22 '13 at 17:28
You should only ask practical, answerable questions based on actual problems that you face. Chatty, open-ended questions diminish the usefulness of our site and push other questions off the front page. " I can not interpret this in any other way.
– Rinzwind Jan 22 '13 at 10:54root.disk
file after filesystem corruption, accessing its contents, or something else altogether). So I think it's time to close this as not a real question. DllFileMissing*: If you still want help with this, please provide more information; this could be reopened. – Eliah Kagan Jan 25 '13 at 00:03