I'm using openSuSE 11.1 64-bit
At install time I set up an encrypted partition and it's not suppose to try and mount it at boot time. However, it does try and mount it at boot time and when I'm not there to enter the pass phrase it obviously fails. When this happens, I can't mount it once booted because the encryption/decryption device never gets created. (unmounting/mounting the partition works fine when I enter the pass phrase at boot time).
Here are some (snippets)files for reference:
Code:
#/etc/fstab
..
/dev/mapper/cr_vg00-vol0 <encrypted mount point> ext3 noauto,acl,user_xattr 0 0
..
Code:
#/etc/crypttab
..
cr_vg00-vol0 /dev/vg00/vg00-vol0 none none
..
Code:
/var/log/boot.msg
..
#the following line appears multiple times
Please enter passphrase for /dev/vg00/vg00-vol0 (cr_vg00-vol0):
98: kill: (2005) - No such process
/dev/vg00/vg00-vol0... failed
..
This is the output of the mount command when trying to mount the encrypted partion:
Code:
~> sudo mount <partition>
mount: special device /dev/mapper/cr_vg00-vol0 does not exist
I think I can create the encryption/decryption device myself, but I don't want to have to do that.
What I want is to have it not try to mount the partition at boot time and be able to mount it manually once the computer is booted when I need to access the partition.
Any help is appreciated. Thanks.