G4L 0.61
Została wydana nowa wersja specjalistycznej dystrybucji Linux G4L 0.61 (dawniej: Ghost for Linux) https://linuxiarze.pl/g4l-0-61/

seen from Brazil
seen from United States

seen from Maldives
seen from Germany
seen from France
seen from United States

seen from Germany
seen from United States
seen from China

seen from Türkiye

seen from United Kingdom
seen from Russia

seen from Indonesia
seen from China
seen from Japan

seen from United States
seen from United States

seen from Indonesia
seen from United States
seen from Cambodia
G4L 0.61
Została wydana nowa wersja specjalistycznej dystrybucji Linux G4L 0.61 (dawniej: Ghost for Linux) https://linuxiarze.pl/g4l-0-61/
partclone-utils: imagemount
#partclone #partclone-utils : #imagemount #debian #devuan #package and #usage for #linux #cloning and #venenux
facil de usar, un comandito y ya, adjunto los paquetes para debian 5, 6, 7, 8, y 9 asi como Devuan 1 y 2 Descarga desde el lista venenux el paquete (https://groups.google.com/forum/m/#!msg/venenuxsarisari/Es-bSPvpAUc/L2V0LyAYAAAJ) e instalarlo manualmente dpkg -i Descargas/parclone-utils*.deb adosar el disco externo que tiene la imagen clonada que se va ver los archivos sin restaurarla, digamos…
View On WordPress
Restore the clonezilla files into the image file.
cat /mnt/nas/2016-02-12-19-img/sdb1.ntfs-ptcl-img.gz.* | gzip -d -c | sudo partclone.restore -C -s - -O /mnt/nas/image-file.img
SD-Karte des Raspberry Pi mit partclone sichern Lizenz: http://creativecommons.org/licenses/by/3.0/ Textquelle: http://www.bitblokes.de/2013/03/sd-karte-des-raspberry-pi-sichern-dd-oder-partclone/ "SD-Karte des Raspberry Pi sichern: dd oder partclone?" von http://www.bitblokes.de/ Lizenz: http://creativecommons.org/licenses/by/3.0/ http://www.clonezilla.org/ http://partclone.org/
Partclone + Netcat
Step 1 covers the backup and restore procedure for the partition and 2 respectively the one for boot code and partition tables (hence bs=512, also known as MBR)
Backup
Source (device to be backuped):
[1] sudo partclone.ext4 -c -s /dev/sda1 | nc <target> <port> [2] sudo dd if=/dev/sda bs=512 count=1 | nc <target> <port>
-c = clone (aka read partition) -s = source
Target (device which receives the image):
[1] nc -l -p <port> | sudo partclone -C -r -o /<path>/<to>/<IMAGE> [2] nc -l -p <port> | dd of=/<path>/<to>/<MBR>
-C = ignore device size / free space (as it is supposted to be sent via nc) -r = restore -o = output to file
Restore
Source (device which holds the image):
[1] sudo partclone.ext4 -c -s /<path>/<to>/<file> | nc <target> <port> [2] sudo dd if=/<path>/<to>/<MBR> | nc <target> <port>
Target (device which shall be restored):
[1] nc -l -p 8889 | sudo partclone.ext4 -C -r -o /dev/sda1 [2] nc -l -p 8889 | sudo dd of=/dev/sda