I had recently downloaded an .iso file in Ubuntu. I decided to burn it in Windows as I am well acquainted (I am using an evaluation copy of Windows 8). So I copied it over to one of the NTFS partitions (D:\ being the directory under Windows). But when I booted into Windows, I could not find the specified .iso file. Booting back into Ubuntu, I mounted the NTFS partition, but alas! The file was gone from there too! It was a fairly large .iso file and I do not want to download it all over again. Please help me out.
|
Here is the answer I referenced: If you hibernate windows (or purpose or because of power-saving), then use ubuntu to store files on the NTFS partition, and then boot up windows, Windows thinks the disk was corrupted while it was in hibernate and "fixes" anything different. After that loging back into ubuntu just confirms that the files have in-fact been deleted. Also I have seen that windows 7 may do a chkdsk after it installs updates on shudown when you bring it back up windows does extra tasks related to installing updates, so be careful not to boot into ubuntu after shutting down from updates. http://www.linuxquestions.org/questions/linux-newbie-8/windows-chkdsk-deletes-files-written-by-ubuntu-on-an-ntfs-partition-913606/ Yes even on a shared partition seprate from the windows partition and take care even with fat partitions (usb drives). Sources, http://superuser.com/questions/211079/what-do-i-have-to-take-care-of-when-hibernating-both-ubuntu-and-windows-dual-bo/211175#211175 , http://superuser.com/questions/39532/hibernating-and-booting-into-another-os-will-my-filesystems-be-corrupted Edit: I was looking through the widows site to try and find if they detailed the hibernate process, but this sounds interesting http://msdn.microsoft.com/en-us/library/dd143253(v=winembedded.5).aspx , It seems at best the write caching from the harddrive is being saved to memory, then being written after bringing the drive back up, this may mean that the files can't be recovered, because it's not "deleting" as in removing the first letter of the file so the system does not see it, but actually overwriting large areas of data that have been cached. Needs to be looked into more. |
|||
|
|
find /home/<user> -name "*.iso"or, mount everything first and thenfind /media/ /mnt/ -name "*.iso", orfind / -name "*.iso"). – user55822 Oct 19 '12 at 8:40