I heard that Ext4 Was more stable in these conditions, but how can I be sure that my files didn't get corrupted in the process? I heard that because of Ext4 journaling file that the files aren't very easy to get corrupted as compared to NTFS (which is what I switched from).
Anyone to help me out with any of this?
I agree with mikewhatever. Additional this might help:
The source shouldn't be damaged. The destination could be incomplete or so. If you want to see what was copied correctly and what not you can use
diff
orrsync
. TypeTo get a list of files which haven't been copied correctly. Leave out the parameter
c
to actually copy the data again.To check a linux file system you can use
fsck
(NTFS should be better checked by windows itself). To check all ext3 and ext4 partitions during next system boot you can use:Don't use fsck on mounted partitions!
Graphical tool
You can use the Disk Utility (run it form System / Administration or
ALT + F2
andpalimpsest
). This is a graphical tool for hard disks and other storage devices. You'll find your harddisk there. Unmount it (there is a button there) and click Check Filesystem.Any file system with journaling is less prone to corruption, including NTFS. That said, it has nothing to do with freezing when copying. If the data has only been copied partway, there is nothing a file system can do. Just copy the files again, overwriting the files that had already been copied.