Encrypyted filesystems on linode

Has anyone tried encrypting a block device on a Linode?

I'm assuming it's possible but I've never actually tried. I could not find anything in the wiki.

2 Replies

You can do DRBD on Linode, which would tell me you can have an encrypted file system.

In case anyone cares it works with the standard kernel. No problems whatsoever.

I setup a new disk called xvdf and ran:

cryptsetup luksFormat /dev/xvdf
( Type 'YES', enter passphrase )
cryptsetup luksOpen /dev/xvdf xvdf-crypttest
( enter passphrase )
mkfs -t ext4 /dev/mapper/xvdf-crypttest
mkdir /crypt-test
mount /dev/mapper/xvdf-crypttest /crypt-test

I don't intend to use this in production, I just wondered if it would work.

DRBD is the next thing to play with. :D

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct