Showing posts with label storage media. Show all posts
Showing posts with label storage media. Show all posts

Mount a Partition from inside a Disk Image

Diposkan oleh Unknown on Wednesday, April 15, 2009

You need sfdisk and losetup.


sfdisk -l -uS disk_image.raw
# look for the start sector of the partition, e.g. 2

mount -o loop,offset=$((2 * 512)) disk_image.raw /mnt
#mount the partition to /mnt (replace 2 with the output from sfdisk)


You could of course also use kpartx to create special device files for the partitions.
More aboutMount a Partition from inside a Disk Image

Rescue Important Data with ddrescue

Diposkan oleh Unknown on Wednesday, March 18, 2009

ddrecue is better than dd, dd_rescue or dd_rhelp if you want to (try to) backup what's possible from a broken (hard or compact) disc. It creates a log file and which lets you continue interrupted backups. If you try to backup a broken cd or dvd it might help to use different dvd drives to try to read the disc.

Don't let it run over night or you might end up with an exhausted dvd drive that doesn't really want to read anything any longer.
More aboutRescue Important Data with ddrescue

How to Remove Grub from your Boot Sector(MBR) but keep the Partition Table

Diposkan oleh Unknown on Sunday, March 15, 2009

It's one really easy command, if you know what it is ;)
sudo dd if=/dev/zero of=/dev/XXX bs=446 count=1

That helps you to remove any boot sector from that device, e.g. sda. But make sure you've got a boot sector somewhere! I can recommed installing grub to a USB stick for backup purposes.
More aboutHow to Remove Grub from your Boot Sector(MBR) but keep the Partition Table

How To Add Knoppix to your USB Stick

Diposkan oleh Unknown

If you've got a large USB stick, there's a high chance you will have some space left for installing a current Knoppix on it. That way you can save a few CD-Rs as you need not write a new CD when a new Knoppix comes out.
More aboutHow To Add Knoppix to your USB Stick

Backup Partitions to a Bootable Partimage DVD

Diposkan oleh Unknown on Tuesday, September 2, 2008

Looking for exactly that I found a nice quick little howto, which is written for Windows, but only uses Linux tools: http://ping.windowsdream.com/ping/doc-2.01/bootiso.html
More aboutBackup Partitions to a Bootable Partimage DVD

Recordable CDs and DVDs Tested

Diposkan oleh Unknown on Friday, August 22, 2008

The German "Stiftung Warentest" tested various kinds of recordable CDs and DVDs. The results show that TDK is a recommendable brand for recordable CDs and Verbatim is good at making recordable DVDs.

The test can results can be read for free online. If you don't speak German, check out the google translation.
More aboutRecordable CDs and DVDs Tested