Skip to content

Commit 0bc11f1

Browse files
committed
Mount a LUKS-encrypted partition
1 parent b7e79b9 commit 0bc11f1

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Apps.page

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2348,6 +2348,19 @@ This solves two problems:
23482348

23492349
<https://superuser.com/questions/778028/configuring-chrome-remote-desktop-with-ubuntu-gnome-14-04>
23502350

2351+
Mount a LUKS-encrypted partition
2352+
--------------------------------
2353+
2354+
If you try mounting directly, you'll see:
2355+
2356+
yang@partycat:~$ sudo mount /dev/sdb1 /media/store
2357+
mount: unknown filesystem type 'crypto_LUKS'
2358+
2359+
From <https://askubuntu.com/questions/63594/mount-encrypted-volumes-from-command-line>:
2360+
2361+
sudo cryptsetup luksOpen /dev/sdb1 my_encrypted_volume
2362+
sudo mount /dev/mapper/my_encrypted_volume /media/store
2363+
23512364
<!--
23522365
vim: ft=markdown
23532366
-->

0 commit comments

Comments
 (0)