I backed up an entire 32GB NTFS partition to a raw image with with dd. The file-system on the partition in accessible under Debian after mounting with:
$ sudo mount -o ro,loop /media/Path/To/ImageFile.img /tmp/IMAGE/
After remounting this image, without specifying ro, can the NTFS file-system safely be modified (such as editing files, copying new files, deleting files, etc.)?
I know GNU/Linux can read/write NTFS file-systems -- my question is whether the NTFS file-system in the image can safely be modified after mounting the image as read/write.
