Is it a good idea to use qcow2 format to have a backup image for whole disk with partition table?
I'm not sure that an image with partition table will be able to mount normally and in the same time it will be impossible to run the image in virtual machine because of mess with fstab/mtab / virtual hdd's UUID-s.
I need to clean up some HDD but I will need some of it's content later.
how can I modify or create again the whole process of creating a backup in Windows Backup?
I'm doing until now backup to an external drive, and when it ran out of space on the backup fails.
It is possible that the automatic Windows Backup delete the oldest backup?
Regards
i want to partition raw disk image with those following commands
#creating the blank image
$ dd if=/dev/zero of=example.img bs=1M count=50
#write the partition table
$ parted example.img mktable msdos
#creating partition but not the file system
#creating fat32 primary partition 1 to 15 MB
$ parted example.img mkpart p fat32 1 15
#creating ext3 primary partition 16 to end
$ parted example.img mk
Hi everyone,
I just got a new Verizon GS3, and would like to do the equivalent of creating a "disk image" of my phone. This feature has saved me numerous times on my PC, and I had used Sprite backup on my prior WM6.0 system to restore the phone from a ROM and then reload all my settings, folders, etc.
I have an image of an existing partition generated with dd if=/dev/sdXN of=image.bin. Now I want to use this image as the basis for a virtual machine. I know how to convert the image into a format that VirtualBox can use.
The problem is that the "disk" image is really just the image of one partition and thus does not contain an MBR or a partition table.
I have a system running using a IDE hard disk.
I backup the full disk (entire)
dd if=/dev/sda of=/media/usb/backup.img
But now my system is using SATA hard disk NOT IDE HARD DISK.
I restore the previous backup image to this hard disk.
dd if=/media/usb/backup.img of=/dev/sdb
But, after restore the backup image to the new SATA disk, I try to boot, but the system fail on boot.
I be
How to mount compressed disk image?
Here is my situation: I have hard drive with (fresh) OS installation. I made compressed image of that disk to another disk.
How to make compressed disk image to file (on another disk):
sudo cat /dev/sdb | gzip > disk.img.gz (sdb is source)
If free space is zero-ed, compression is much better.
I am trying to count number of record in a file and then append a trailer to that file.
Trailer should e in the format as below
T| <count of records>
count of records ---> this count should be one less than the actual count obtained, as the file will have a header.
I have resized lvm partitions in the past, but after the resize there is space at the end of the partition. What I want to achive is to have the space at the beginning of the partition instead.