1
2
3
4
5
6
7
modprobe twofish
modprobe cryptoloop
dd if=/dev/urandom of=/home/user/cryptfile bs=1024 count=20000
mkdir /home/user/safe
losetup -e twofish256 /dev/loop0 /home/user/cryptfile
mke2fs /dev/loop0
mount -t ext2 /dev/loop0 /home/user/safe
2012-03-21T16:56:29 murphyDas alte Cryptoloopsystem zu verwenden, wie hlubenow schreibt, ist meiner Meinung nach nicht so sinnvoll, da es viel unbequemer zu handhaben ist als die oben erwähnten Tools und im Gegensatz zu diesen keinerlei Informationen über das Setup der Verschlüsselung im Container speichert, so dass man extern noch allerhand Daten aufbewahren muss, die beschreiben wie man den Container später wieder korrekt öffnen kann.
/home/user/cryptfile /home/user/safe ext2 loop,encryption=twofish256,noauto,user 0 0
QuoteHowever if the device argument is file, cryptsetup tries to allocate loopback device and map it into this file. This mode requires Linux kernel 2.6.25 or more recent which supports loop autoclear flag(loop device is cleared on last close automatically).
QuoteBy far the most questions on the cryptsetup mailing list are from people that managed to damage the start of their LUKS partitions, i.e. the LUKS header. In most cases, there is nothing that can be done to help these poor souls recover their data.
2012-04-03T15:20:13 hlubenow[...]
Der Anfang der FAQ ist auch nicht gerade vertrauenerweckend:
QuoteBy far the most questions on the cryptsetup mailing list are from people that managed to damage the start of their LUKS partitions, i.e. the LUKS header. In most cases, there is nothing that can be done to help these poor souls recover their data.
Man will ja nun nicht, daß seine Daten verlorengehen, und jedesmal ein Backup ist ja auch nicht so schön.
[...]
QuoteWeiß nicht, ob die alte Methode da besser ist (scheint ja ein ext2-System zu sein), jedenfalls gibt's da keinen Meta-Header, den man vernichten könnte.
QuoteInsofern, die alte Methode geht auch noch unter OpenSuSE 12.1, und da ich damit bisher ganz gute Erfahrungen habe, werde ich das wohl weiter so machen.