Multiboot USB-Stick: Clonezilla 2.3.1-18 einrichten
In der folgenden Anleitung wird beschrieben, wie Sie Ihren Multiboot USB-Stick um die Clonezilla 2.3.1-18 Live ISO-Images (http://www.clonezilla.org) für das Booten vom USB-Stick erweitern. Voraussetzung ist, dass Sie bereits einen USB-Stick wie in der Anleitung Multiboot USB-Stick: USB-Stick vorbereiten beschrieben hergerichtet haben.
USB-Stick einhängen
Stecken Sie den Multiboot USB-Stick an den Rechner an. Sollte die Automount-Funktion von Ubuntu den USB-Stick gemountet haben, müssen Sie alle Partitionen die auf dem USB-Stick existieren und gemountet wurden wieder aushängen. Falls Ihr USB-Stick einer anderen Gerätedatei zugeordnet wurde, ändern Sie im folgenden Befehl /dev/sdb dementsprechend ab.
georg@ubuntu1404:~$ for i in $(mount | grep ^"/dev/sdb" | awk '{print $1}'); do sudo umount $i; done
Anschließend mounten Sie den USB-Stick nach /mnt. Beachten Sie dabei, dass Sie beim Parameter uid Ihren Benutzernamen angeben.
georg@ubuntu1404:~$ sudo mount /dev/sdb1 /mnt -o uid=georg,gid=users
Clonezilla 2.3.1-18 i686 einrichten
Laden Sie mit dem folgenden Befehl das ISO-Image der 32bit Version von Clonezilla 2.3.1-18 herunter und speichern es direkt auf den eingehängten USB-Stick.
georg@ubuntu1404:~$ wget http://downloads.sourceforge.net/project/clonezilla/clonezilla_live_stable/2.3.1-18/clonezilla-live-2.3.1-18-i686-pae.iso -P /mnt/boot/iso/
Nachdem das ISO-Image auf den USB-Stick gespeichert wurde, öffnen Sie die Konfigurationsdatei /boot/grub/grub.cfg auf dem USB-Stick mit einem Editor.
georg@ubuntu1404:~$ gedit /mnt/boot/grub/grub.cfg
Fügen Sie hier die folgenden Zeilen ein, damit Sie später über das Bootmenü die 32bit-Version von Clonezilla Live 2.3.1-18 starten können.
menuentry "Clonezilla Live 2.3.1-18 i686 pae" {
loopback loop /boot/iso/clonezilla-live-2.3.1-18-i686-pae.iso
linux (loop)/live/vmlinuz findiso=/boot/iso/clonezilla-live-2.3.1-18-i686-pae.iso toram=filesystem.squashfs boot=live config noswap edd=on nomodeset noprompt nosplash locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch=no gfxpayload=1024x768x16,1024x768 ip=frommedia i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes
initrd (loop)/live/initrd.img
}
loopback loop /boot/iso/clonezilla-live-2.3.1-18-i686-pae.iso
linux (loop)/live/vmlinuz findiso=/boot/iso/clonezilla-live-2.3.1-18-i686-pae.iso toram=filesystem.squashfs boot=live config noswap edd=on nomodeset noprompt nosplash locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch=no gfxpayload=1024x768x16,1024x768 ip=frommedia i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes
initrd (loop)/live/initrd.img
}
Clonezilla 2.3.1-18 amd64 einrichten
Laden Sie mit dem folgenden Befehl das ISO-Image der 64bit Version von Clonezilla 2.3.1-18 herunter und speichern es direkt auf den eingehängten USB-Stick.
georg@ubuntu1404:~$ wget http://downloads.sourceforge.net/project/clonezilla/clonezilla_live_stable/2.3.1-18/clonezilla-live-2.3.1-18-amd64.iso -P /mnt/boot/iso/
Nachdem das ISO-Image auf den USB-Stick gespeichert wurde, öffnen Sie die Konfigurationsdatei /boot/grub/grub.cfg auf dem USB-Stick mit einem Editor.
georg@ubuntu1404:~$ gedit /mnt/boot/grub/grub.cfg
Fügen Sie hier die folgenden Zeilen ein, damit Sie später über das Bootmenü die 64bit-Version von Clonezilla Live 2.3.1-18 starten können.
menuentry "Clonezilla Live 2.3.1-18 amd64" {
loopback loop /boot/iso/clonezilla-live-2.3.1-18-amd64.iso
linux (loop)/live/vmlinuz findiso=/boot/iso/clonezilla-live-2.3.1-18-amd64.iso toram=filesystem.squashfs boot=live config noswap edd=on nomodeset noprompt nosplash locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch=no gfxpayload=1024x768x16,1024x768 ip=frommedia i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes
initrd (loop)/live/initrd.img
}
loopback loop /boot/iso/clonezilla-live-2.3.1-18-amd64.iso
linux (loop)/live/vmlinuz findiso=/boot/iso/clonezilla-live-2.3.1-18-amd64.iso toram=filesystem.squashfs boot=live config noswap edd=on nomodeset noprompt nosplash locales= keyboard-layouts= ocs_live_run="ocs-live-general" ocs_live_extra_param="" ocs_live_batch=no gfxpayload=1024x768x16,1024x768 ip=frommedia i915.blacklist=yes radeonhd.blacklist=yes nouveau.blacklist=yes vmwgfx.blacklist=yes
initrd (loop)/live/initrd.img
}
USB-Stick aushängen
Bevor Sie den USB-Stick aushängen, sollten Sie mit sync sicherstellen, dass alle Daten aus dem Schreib-/Lese-Cache auf den USB-Stick gespeichert wurden.
georg@ubuntu1404:~$ sync
Danach können Sie den USB-Stick aushängen.
georg@ubuntu1404:~$ sudo umount /mnt
Dieser Eintrag wurde am 09.12.2014 erstellt und zuletzt am 24.01.2016 bearbeitet.
Direkter Link zu dieser Seite: http://www.gtkdb.de/index_7_2638.html
[ Zur Startseite ] [ Zur Kategorie ]
© 2004-2021 by Georg Kainzbauer