Leon Fauster
2015-Feb-10 21:08 UTC
[CentOS] LUKS on EL6 / enable block device after reboot
Is there an easy way (cli) to enable a luks encrypted partition after reboot (a partition that was not enabled while booting, because not in the crypttab). I can execute the necessary command stack [1] but just wondering if there is an "enterprise/easy" way to do that ... [1] cryptsetup luksOpen $(blkid -t TYPE="crypto_LUKS" -o device) \ luks-$(cryptsetup luksUUID $(blkid -t TYPE="crypto_LUKS" -o device)) -- LF
Always Learning
2015-Feb-10 21:19 UTC
[CentOS] LUKS on EL6 / enable block device after reboot
On Tue, 2015-02-10 at 22:08 +0100, Leon Fauster wrote:> Is there an easy way (cli) to enable a luks encrypted partition > after reboot (a partition that was not enabled while booting, > because not in the crypttab). > > I can execute the necessary command stack [1] but just wondering if > there is an "enterprise/easy" way to do that ... > > [1] cryptsetup luksOpen $(blkid -t TYPE="crypto_LUKS" -o device) \ > luks-$(cryptsetup luksUUID $(blkid -t TYPE="crypto_LUKS" -o device))I use a BASH script containing cryptsetup luksOpen /dev/$1 $2 mkdir /xx/$2 mount /dev/mapper/$2 /xx/$2 -- Regards, Paul. England, EU. Je suis Charlie.