ubuntuusers.de

Daten aus einem Clonzilla Image holen

Status: Gelöst | Ubuntu-Version: Ubuntu 10.10 (Maverick Meerkat)
Antworten |

senden9

Avatar von senden9

Anmeldungsdatum:
8. Februar 2010

Beiträge: 965

Wohnort: Österreich

Hallo, ich brauche ein paar Dateien aus einem Backup. Das Backup ist das einer alten Ubuntu Installation. Hier was ich gemacht habe (alles als root):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
cat ./2010-10-09-11/sdc5.ext4-ptcl-img.gz.a* > image_sdc5.ext4.gz #Dateien zusammenfügen
file image_sdc5.ext4.gz
Ausgabe -> image_sdc5.ext4.gz: gzip compressed data, from Unix, last modified: Sat Oct  9 16:05:50 2010, max speed
gzip -d -c -q image_sdc5.ext4.gz > image #image auspacken
mount -o loop -t ext4 image /mnt/ #mount versuch
Ausgabe -> mount: wrong fs type, bad option, bad superblock on /dev/loop0,
       missing codepage or helper program, or other error
       Manchmal liefert das Syslog wertvolle Informationen  versuchen
       Sie  dmesg | tail  oder so
dmesg | tail
Ausgabe -> [38430.972757] EXT4-fs (loop0): VFS: Can't find ext4 filesystem

Ich hab noch ein paar Dateien angehängt die von Clonzilla erzeugt wurden. In der Datei ls.txt ist die Ausgabe von "ls -hl /media/sat/2010-10-09-11/". Sat ist die externe Festplatte auf der sich das Backup befindet. Was mache ich falsch?

Ich schreibe hier wegen "Wiederherstellung von Daten"

infos.tar.bz2 (81.6 KiB)
Infos
Download infos.tar.bz2

DrScott Team-Icon

Ehemalige
Avatar von DrScott

Anmeldungsdatum:
7. Juli 2005

Beiträge: 6018

Wohnort: Nürnberg

senden9

(Themenstarter)
Avatar von senden9

Anmeldungsdatum:
8. Februar 2010

Beiträge: 965

Wohnort: Österreich

Gehe ich nach dieser Anleitung vor erhalte ich das :

cat 2010-10-09-11/sdc5.ext4-ptcl-img.gz.* | gzip -d -c | partclone.restore -C -s - -o hda2.img
Partclone v0.2.16 http://partclone.org
Starting to restore image (-) to device (hda2.img)
Calculating bitmap... Please wait... done!
File system:  EXTFS
Device size:   67,8 GB
Space in use:   9,0 GB
Free Space:    58,8 GB
Block size:   4096 Byte
Used block :  2189452
Elapsed: 00:08:19, Remaining: 00:00:00, Completed:100,00%, Rate:   1,08GB/min,  
Total Time: 00:08:19, Ave. Rate:    1,1GB/min, 100.00%% completed!
Syncing... OK!
Partclone successfully restored the image (-) to the device (hda2.img)
Cloned successfully.

mount -o loop hda2.img /mnt/
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
       missing codepage or helper program, or other error
       Manchmal liefert das Syslog wertvolle Informationen – versuchen
       Sie  dmesg | tail  oder so

dmesg | tail
[  476.651131] sd 6:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[  476.651741] sd 6:0:0:0: [sdb] Write Protect is off
[  476.651748] sd 6:0:0:0: [sdb] Mode Sense: 2d 08 00 00
[  476.651752] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  476.661131] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  476.682287]  sdb: sdb1 sdb2
[  476.683746] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[  476.683754] sd 6:0:0:0: [sdb] Attached SCSI disk
[  477.240395] EXT2-fs (sdb1): warning: mounting unchecked fs, running e2fsck is recommended
[ 2739.032690] EXT4-fs (loop0): bad geometry: block count 16544941 exceeds size of device (16257568 blocks)

Partclone habe ich von hier da es bei Sourceforge keine amd64 Version gibt. Gibts noch Vorschläge?

senden9

(Themenstarter)
Avatar von senden9

Anmeldungsdatum:
8. Februar 2010

Beiträge: 965

Wohnort: Österreich

Hab die Antwort!

1
cat 2010-10-09-11/sdc5.ext4-ptcl-img.gz.* | gzip -d -c | partclone.restore --restore_row_file -C -s - -o versuch2.img

Neu ist hier das --restore_row_file. Das kann laut Hilfe das:

         --restore_row_file create special row file for loop device

Ich frag mich warum das nicht in der oben verlinkten FAQ steht?

decola

Anmeldungsdatum:
24. November 2012

Beiträge: 1

Theres a littel mistak in the commandline

It says --restore_raw-file (in the latest version i use)

Antworten |