Wipe: Revision history

From Elch-Wiki
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

15 April 2023

  • curprev 11:0911:09, 15 April 2023Roman talk contribs 560 bytes +560 Created page with "= Ganze Disk mittels dd = <pre> dd if=/dev/zero of=/dev/sdb bs=4098 status=progress </pre> = Ganze Disk mittels OpenSSL = wipe_disk.sh: <pre> #! /bin/sh # As c't 2016-03 Seite 150 # # Idee: Nullen mit einem zufälligen Passwrot verschlüsseln und damit die Disk füllen # Dies ist schneller als Disk mit echten Zufallszahlen zu erzeugen, da /dev/urandom sehr langsam ist. # openssl enc -aes-256-ctr -pass pass:"$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64)" -nos..."