@homoran sagte in SSD Karte als Backup Image Clonen:
@sonnenschein sagte in SSD Karte als Backup Image Clonen:
Im der Grafischen Oberfläche des PI gibt es ein Menü dafür
Bitte nicht zu einer grafischen Oberfläche auf einem Server animieren!
Server laufen eigentlich immer headless
Guten Abend,
um nicht diese PÖSE grafische Oberfläche zu benutzen ( Das Programm das es dort gibt nennt sich PiClone), geht der Weg auch übers Terminal. Auf Github gibt es dazu ein Programm RPI-Clone das sehr einfach Klone vom laufenden System erstellt.Dort ist alles sehr gut beschrieben. Ein kleiner Abriss wie vorgegangen werden müsste...Wie gesagt es wird kein Image vom System erzeugt, sondern ne lauffähige Version auf einen anderen Datenträger. In meinem Fall zum Test habe ich meinen "Sandisk Ultra Fit USB Stick 3.1 Flash 64GB" auf einen baugleichen USB-Stick transferiert.(Anmerkung: das/den Laufwerk/Stick vorher blank FAT32 formatieren, ich hatte ein fremdes Betriebssystem auf den Stick und da gab es eine Fehlermeldung mit Abbruch beim anlegen der neuen Partionen.
Und Los gehts.Terminal auf dem Raspi starten.Das rpi-clone Programm installieren mit.
$ git clone https://github.com/billw2/rpi-clone.git
$ cd rpi-clone
$ sudo cp rpi-clone rpi-clone-setup /usr/local/sbin
Dann das Laufwerk USB-Stick oder was auch immer, an den Raspi einstecken, und mit
$ lsblk
schauen welchen Laufwerksname er bekommen hat. In meinem Fall ist sda der Stick von dem gebootet wurde, und sdb wo die Kopie dann drauf soll.
Mit der Anweisung..
$ sudo rpi-clone sdb
gehts auch schon fast los. Ich habe die Frage übersprungen bei Optional ...file system label, da ich keine Labelnamen verwende. Nach 13:44 Minuten war er dann für das Erstellen das neuen Klone fertig.Raspi runterfahren...Alten USB-Stick raus... Raspi wieder an Strom und durchstarten.
Anbei noch der komplette Terminalauszug zum nachvollziehen der Schritte.
pi@rasppione:~ $ git clone https://github.com/billw2/rpi-clone.git
Klone nach 'rpi-clone' ...
remote: Enumerating objects: 180, done.
remote: Counting objects: 100% (4/4), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 180 (delta 0), reused 1 (delta 0), pack-reused 176
Empfange Objekte: 100% (180/180), 98.77 KiB | 455.00 KiB/s, Fertig.
Löse Unterschiede auf: 100% (68/68), Fertig.
pi@rasppione:~ $ cd rpi-clone
pi@rasppione:~/rpi-clone $ sudo cp rpi-clone rpi-clone-setup /usr/local/sbin
pi@rasppione:~/rpi-clone $ rpi-clone
rpi-clone needs to be run as root.
pi@rasppione:~/rpi-clone $ sudo rpi-clone
No destination disk given.
usage: rpi-clone sdN {-v|--verbose} {-f|--force-initialize} {-f2}
{-p|--p1-size size} {-u|--unattended} {-U|--Unattended} {-q|--quiet}
{-s|--setup host} {-e|--edit-fstab sdX } {-m|--mountdir dir }
{-L|--label-partitions label} {-l|--leave-sd-usb-boot}
{-a|--all-sync} {-F|--Force-sync} {-x} {-V|--version}
{--convert-fstab-to-partuuid}
{--exclude=PATTERN} {--exclude-from=FILE}
-v - verbose rsync, list all files as they are copied.
-f - force initialize the destination disk by imaging the booted disk
partition structure. File systems are then synced or imaged.
-f2 - force initialize only the first 2 partitions to the destination.
So a multi partition USB boot can initialize clone back to
a 2 partition SD card.
-p size - resize destination partition 1 to 'size' bytes. For two partition
initialize (when first clone to blank disk or using -f2 or -f).
Use 'sizeM' for MiB size units. eg -p 256M equals -p 268435456
-u - unattended clone if not initializing. No confirmations asked,
but abort if disk needs initializing or on error.
-U - unattended even if initializing. No confirmations asked,
but abort only on errors.
-q - quiet mode, no output unless errors or initializing. Implies -u.
-s host - add 'host' to args passed to script rpi-clone-setup and run it
after cloning but before unmounting partitions. For setting
clone disk hostname, but args can be what the script expects.
You can give multiple '-s arg' options.
-e sdX - edit destination fstab to change booted device names to new
device 'sdX'. This is Only for fstabs that use device names.
Used for setting up a USB bootable disk.
-m dir - Add dir to a custom list of mounted directories to sync. Then
the custom list will be synced instead of the default of all
mounted directories. The root directory is always synced.
Not for when initializing.
-L lbl - label for ext type partitions. If 'lbl' ends with '#', replace
'#' with a partition number and label all ext partitions.
Otherwise, apply label to root partition only.
-l - leave SD card to USB boot alone when cloning to SD card mmcblk0
from a USB boot. This preserves a SD card to USB boot setup
by leaving the SD card cmdline.txt using the USB root. When
cloning to USB from SD card this option sets up the SD card
cmdline.txt to boot to the USB disk.
-a - Sync all partitions if types compatible, not just mounted ones.
-F - force file system sync or image for some errors. eg:
If source used > destination space error, do the sync anyway.
If a source partition mount error, skip it and do other syncs.
-x - use set -x for very verbose bash shell script debugging
-V - print rpi-clone version.
Clone a booted file system to a destination disk which is bootable.
The destination disk is a SD card (USB card reader) or USB disk 'sdN' plugged
into a USB port. The 'sdN' name should be a full disk name like sda and not
a partition name like sda1. rpi-clone works on a Raspberry Pi and can work on
other systems. For a destination disk that shows up as sda, run:
$ sudo rpi-clone sda
Clones can be from a booted SD card or USB disk. For a description, example
clone runs and example usage of above options, see the README.md at:
https://github.com/billw2/rpi-clone
A line logging a rpi-clone run is written to /var/log/rpi-clone.log.
Download:
git clone https://github.com/billw2/rpi-clone
pi@rasppione:~/rpi-clone $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 57,3G 0 disk
├─sda1 8:1 1 256M 0 part /boot
└─sda2 8:2 1 57,1G 0 part /
pi@rasppione:~/rpi-clone $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 57,3G 0 disk
├─sda1 8:1 1 256M 0 part /boot
└─sda2 8:2 1 57,1G 0 part /
sdb 8:16 1 57,3G 0 disk
├─sdb1 8:17 1 3,9G 0 part /media/pi/CAINE 12
└─sdb2 8:18 1 2,3M 0 part
pi@rasppione:~/rpi-clone $ sudo rpi-clone sdb
Booted disk: sda 61.5GB Destination disk: sdb 61.5GB
---------------------------------------------------------------------------
Part Size FS Label Part Size FS Label
1 /boot 256.0M fat32 --
2 root 57.1G ext4 rootfs 2 2.0M -- --
---------------------------------------------------------------------------
== Initialize: IMAGE partition table - FS types conflict ==
1 /boot (49.0M used) : MKFS SYNC to sdb1
2 root (8.1G used) : RESIZE MKFS SYNC to sdb2
---------------------------------------------------------------------------
Run setup script : no.
Verbose mode : no.
-----------------------:
** WARNING ** : All destination disk sdb data will be overwritten!
-----------------------:
Initialize and clone to the destination disk sdb? (yes/no): y
Optional destination ext type file system label (16 chars max):
Initializing
Imaging past partition 1 start.
=> dd if=/dev/sda of=/dev/sdb bs=1M count=8 ...
Resizing destination disk last partition ...
Resize success.
Changing destination Disk ID ...Error: Partition(s) 1, 2 on /dev/sdb have been written, but we have been unable to inform the kernel of the change, probably because it/they are in use. As a result, the old partition(s) will remain in use. You should reboot now before making further changes.
=> mkfs -t vfat -F 32 /dev/sdb1 ...
=> mkfs -t ext4 /dev/sdb2 ...
Syncing file systems (can take a long time)
Syncing mounted partitions:
Mounting /dev/sdb2 on /mnt/clone
mount: /mnt/clone: special device /dev/sdb2 does not exist.
Mount failure of /dev/sdb2 on /mnt/clone.
Aborting!
pi@rasppione:~/rpi-clone $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 57,3G 0 disk
├─sda1 8:1 1 256M 0 part /boot
└─sda2 8:2 1 57,1G 0 part /
sdb 8:16 1 57,3G 0 disk
└─sdb1 8:17 1 3,9G 0 part /media/pi/CAINE 12
pi@rasppione:~/rpi-clone $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 57,3G 0 disk
├─sda1 8:1 1 256M 0 part /boot
└─sda2 8:2 1 57,1G 0 part /
sdb 8:16 1 57,3G 0 disk
└─sdb1 8:17 1 256M 0 part /media/pi/FAT32
pi@rasppione:~/rpi-clone $ sudo rpi-clone sdb
Destination disk partition /dev/sdb1 is mounted on /media/pi/FAT32.
The clone cannot proceed unless it is unmounted.
Do you want to unmount /media/pi/FAT32? (yes/no): yes
Booted disk: sda 61.5GB Destination disk: sdb 61.5GB
---------------------------------------------------------------------------
Part Size FS Label Part Size FS Label
1 /boot 256.0M fat32 -- 1 256.0M fat32 --
2 root 57.1G ext4 rootfs
---------------------------------------------------------------------------
== Initialize: IMAGE partition table - partition number mismatch: 2 -> 1 ==
1 /boot (49.0M used) : MKFS SYNC to sdb1
2 root (8.1G used) : RESIZE MKFS SYNC to sdb2
---------------------------------------------------------------------------
Run setup script : no.
Verbose mode : no.
-----------------------:
** WARNING ** : All destination disk sdb data will be overwritten!
-----------------------:
Initialize and clone to the destination disk sdb? (yes/no): yes
Optional destination ext type file system label (16 chars max):
Initializing
Imaging past partition 1 start.
=> dd if=/dev/sda of=/dev/sdb bs=1M count=8 ...
Resizing destination disk last partition ...
Resize success.
Changing destination Disk ID ...
=> mkfs -t vfat -F 32 /dev/sdb1 ...
=> mkfs -t ext4 /dev/sdb2 ...
Syncing file systems (can take a long time)
Syncing mounted partitions:
Mounting /dev/sdb2 on /mnt/clone
=> rsync // /mnt/clone with-root-excludes ...
Mounting /dev/sdb1 on /mnt/clone/boot
=> rsync /boot/ /mnt/clone/boot ...
Editing /mnt/clone/boot/cmdline.txt PARTUUID to use a9928495
Editing /mnt/clone/etc/fstab PARTUUID to use a9928495
===============================
Done with clone to /dev/sdb
Start - 19:49:18 End - 20:03:02 Elapsed Time - 13:44
Cloned partitions are mounted on /mnt/clone for inspection or customizing.
Hit Enter when ready to unmount the /dev/sdb partitions ...
unmounting /mnt/clone/boot
unmounting /mnt/clone
===============================
pi@rasppione:~/rpi-clone $ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 1 57,3G 0 disk
├─sda1 8:1 1 256M 0 part /boot
└─sda2 8:2 1 57,1G 0 part /
sdb 8:16 1 57,3G 0 disk
├─sdb1 8:17 1 256M 0 part
└─sdb2 8:18 1 57,1G 0 part
pi@rasppione:~/rpi-clone $
Hoffe das der eine oder andere diese kleine Anleitung als hilfreich sieht. 