Tagged Questions
1
vote
1answer
209 views
Read/write access on raw NTFS image
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 ...
2
votes
2answers
311 views
Help with unzipping a .dd.gz, possibly corrupted
I recieved this file that I was told was a copy of a hard drive (or disk). The file is "sheeva-mem.dd.gz". I tried to unzip the file in a linux Fedora machine. This yielded "unexpected end of file". ...
7
votes
3answers
5k views
Is it possible to mount a gzip compressed dd image on the fly?
I like create an image backup for the first time I'm backing up a system. After this first time I use rsync to do incremental backups.
My usual image backup is as follows:
Mount and zero out the ...
8
votes
1answer
8k views
How do I mount an `img` created with /bin/dd of a hard drive?
I used dd to backup a 80GB drive
dd if=/dev/sdb of=~/sdb.img
Now I need to access some files on that drive, but I don't want to copy the ".img" back over the drive.
mount ~/sdb.img /mnt/sdb ...