ich möchte mein Arbeitssystem auf eine andere Partition clonen um dieses als Testsystem zu benutzen. Dabei ist hda1 das Hauptystem, hda5 Swap und hda6 die Testsystempartition.
Unter Woody habe ich das immer gemacht, indem ich unter Knoppix mit
Code: Alles auswählen
cp -axv /mnt/hda1/* /mnt/hda6/
Code: Alles auswählen
dd if=/dev/hda1 of=/dev/hda6
Code: Alles auswählen
image=/mnt/testlinux/vmlinuz
root=/dev/hda6
label=testlinux
read-only
und dem Ausführen von
Code: Alles auswählen
lilo
Nun habe ich Sarge und boote mit Grub. Ich habe also
Code: Alles auswählen
title Testsystem
root (hd0,2)
kernel /boot/vmlinuz-2.6.8-2-k7 root=/dev/hda6 ro vga=794
initrd /boot/initrd.img-2.6.8-2-k7
savedefault
boot
Code: Alles auswählen
grub-install /dev/hda
Code: Alles auswählen
Installation finished. No error reported. ...
(hd0) /dev/hda
Ein booten des Testsystems hat allerdings diese Meldung zur Folge:
Code: Alles auswählen
Booting 'Testlinux'
root (0,2)
Filesystem unknown, partition type 0x5
kernel /boot/vmlinuz-2.6.8-2-k7 root=/dev/hda6 ro vga=794
Error 17: Cannot mount selected partition
Press any key to continue
Danke
Blaubaer