You are not logged in.
Pages: 1
I am trying to create an encrypted loopback device.
Firstly, I created a file using
dd if=/dev/urandom of=./bigsecret bs=1M count=200Then, created a /dev/loop0 using
losetup /dev/loop0 ./bigsecretThen these two commands:
cryptsetup luksFormat /dev/loop0
cryptsetup luksOpen /dev/loop0 secretAfter that the expected behavior is to see a new file secret in /dev/mapper but I am not getting that. I am following the wiki https://wiki.archlinux.org/index.php/Sy … filesystem
EDIT: It seems like the loop0 was not being created and the losetup command was failing silently. Fixed now.
Last edited by shadyabhi (2012-06-15 14:20:59)
My blog:-
http://blog.abhijeetr.com
Offline
Pages: 1