Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
server_und_serverdienste:linux_zfs_verschluesselung [2021/12/09 10:37] lomaserver_und_serverdienste:linux_zfs_verschluesselung [2024/11/19 16:07] (aktuell) loma
Zeile 1: Zeile 1:
 ====== Linux ZFS Verschlüsselung ====== ====== Linux ZFS Verschlüsselung ======
  
-Hauseigenes Apt-Repo: [[https://apt.iteas.at]]    [[https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KE592Y5993ZKW|{{:wiki:btn_donatecc_lg.gif|}}]]+You would like to show your appreciation for our help 8-o. Gladly. 🙏 We thank you for your donation! 
 +[[https://www.paypal.com/donate/?hosted_button_id=JTFYJYVH37MNE|{{:virtualisierung:proxmox_kvm_und_lxc:btn_donate_lg.gif|}}]] \\ 
 +\\ 
 +In-house Apt-Repo: [[https://apt.iteas.at]] \\ 
 +GITLAB: [[https://git.osit.cc|{{:gitlab_logo.png?nolink&60|}}]] 
 \\ \\
 \\ \\
Zeile 14: Zeile 18:
 zfs create tank01/test1 -o encryption=on -o  keyformat=passphrase zfs create tank01/test1 -o encryption=on -o  keyformat=passphrase
 zfs create -V 520g v-machines/iscsi/vm-202-disk-2-encrypted -o encryption=on -o  keyformat=passphrase zfs create -V 520g v-machines/iscsi/vm-202-disk-2-encrypted -o encryption=on -o  keyformat=passphrase
 +</code>
 +
 +Kompletten verschlüsselten Pool umziehen:
 +<code>
 + zfs send -w -v -R -p oldpool@migration | zfs receive -F newpool
 </code> </code>
  
Zeile 38: Zeile 47:
  
 Sollte die Installation aber so alt sein, das die 512MB Partition auf den HDD's des Rpool's fehlen, dann funktioniert das nicht und eine Neuinstallation des Servers ist notwendig.  Sollte die Installation aber so alt sein, das die 512MB Partition auf den HDD's des Rpool's fehlen, dann funktioniert das nicht und eine Neuinstallation des Servers ist notwendig. 
 +
 +===== Replication verschlüsselter VM's =====
 +FIXME
 +
 +https://forum.proxmox.com/threads/thema-verschl%C3%BCsselung-von-vm-dateien-und-backups.119784/#post-520128
 +
 +<code perl>
 +nano nano /usr/share/perl5/PVE/Storage/ZFSPoolPlugin.pm
 +
 +- my $cmd = ['zfs', 'send', '-Rpv'];
 ++ my $cmd = ['zfs', 'send', '-Rpvw'];
 +</code>