How to change the password of an encrypted LVM system (done with the alternate Installation)?
up vote
50
down vote
favorite
I installed Ubuntu 11.10 with the alternate CD and encrypted the whole system (except boot) with the encrypted LVM. Everything works great as before, but I would like to change the password of the encrypted LVM. I tried to follow the Tips and Tricks of this article, but it does not work.
After typing:
sudo cryptsetup luksDump /dev/sda5
It says: "Device /dev/sd5 doesn't exist or access denied."
I thought the encrypted partition is /dev/sda5.
Any help how to change the password?
password encryption lvm
add a comment |
up vote
50
down vote
favorite
I installed Ubuntu 11.10 with the alternate CD and encrypted the whole system (except boot) with the encrypted LVM. Everything works great as before, but I would like to change the password of the encrypted LVM. I tried to follow the Tips and Tricks of this article, but it does not work.
After typing:
sudo cryptsetup luksDump /dev/sda5
It says: "Device /dev/sd5 doesn't exist or access denied."
I thought the encrypted partition is /dev/sda5.
Any help how to change the password?
password encryption lvm
1
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
2
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09
add a comment |
up vote
50
down vote
favorite
up vote
50
down vote
favorite
I installed Ubuntu 11.10 with the alternate CD and encrypted the whole system (except boot) with the encrypted LVM. Everything works great as before, but I would like to change the password of the encrypted LVM. I tried to follow the Tips and Tricks of this article, but it does not work.
After typing:
sudo cryptsetup luksDump /dev/sda5
It says: "Device /dev/sd5 doesn't exist or access denied."
I thought the encrypted partition is /dev/sda5.
Any help how to change the password?
password encryption lvm
I installed Ubuntu 11.10 with the alternate CD and encrypted the whole system (except boot) with the encrypted LVM. Everything works great as before, but I would like to change the password of the encrypted LVM. I tried to follow the Tips and Tricks of this article, but it does not work.
After typing:
sudo cryptsetup luksDump /dev/sda5
It says: "Device /dev/sd5 doesn't exist or access denied."
I thought the encrypted partition is /dev/sda5.
Any help how to change the password?
password encryption lvm
password encryption lvm
edited Mar 28 at 2:23
asked Mar 4 '12 at 12:46
Filbuntu
2,620144274
2,620144274
1
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
2
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09
add a comment |
1
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
2
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09
1
1
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
2
2
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09
add a comment |
6 Answers
6
active
oldest
votes
up vote
39
down vote
accepted
Here is the answer that worked for me, after Hamish helped me to realize my typo.
First, you need to find out which is the encrypted LVM partition, it may be sda3, but it can also be sda5, sdX2, ...:
cat /etc/crypttab
To add a new password, use luksAddKey:
sudo cryptsetup luksAddKey /dev/sda3
To remove an existing password, use luksRemoveKey:
sudo cryptsetup luksRemoveKey /dev/sda3
View currently used slots of the encrypted partition:
sudo cryptsetup luksDump /dev/sd3
Cited from this blog. Thanks.
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
add a comment |
up vote
22
down vote
Download "Disks" from Software Manager. Run it. Select your encrypted device partition. Click gear icon. Select "Change passphrase". That's it
add a comment |
up vote
11
down vote
Without thinking I set the passphrase to be really long, and it became a pain to type. I ended up using the following to change it to something more manageable.
sudo cryptsetup luksChangeKey /dev/sda5
add a comment |
up vote
11
down vote
To see the slots used:
sudo cryptsetup luksDump /dev/sda5
And to find out which partition to use
cat /etc/crypttab
And if it is listed by uuid, use
ls -l /dev/disk/by-uuid/{insert your uuid here}
Then use
sudo cryptsetup luksAddKey /dev/sda5
sudo cryptsetup luksRemoveKey /dev/sda5
or
sudo cryptsetup luksChangeKey /dev/sda5
and for faster reference (assuming only 1 entry in /etc/crypttab)
sudo cryptsetup luksAddKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
sudo cryptsetup luksChangeKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
add a comment |
up vote
6
down vote
The encrypted partition may well be using /dev/sda5 (note the a in sda5) and that is the device you probably need to use (unless that is just a typo in your question).
However the encrypted device itself will have another name - something like /dev/mapper/cryptroot. For the device name you could:
- look in the file
/etc/crypttab- this will have both the partition and the mapper name in it, but only for permanent partitions - run
mountand see what the mapper name is - this is useful when you have plugged in an encrypted disk via USB. (Though I'm not sure how you then find the actual underlying device name).
add a comment |
up vote
0
down vote
I had issues locating partition name, so created this guide:
Locate your LMV partition
# install jq if you don't have it
sudo apt-get install jq
# find LVM partition
LVMPART=$(lsblk -p --json | jq -r '.blockdevices | select(.children) | .children | select(.children) as $partition | .children | select(.type == "crypt") | $partition.name')
# check if it was found
echo $LVMPART
# (optional)
# if above output is empty, locate it in a tree view using this command
lsblk -p
# partition `/dev/some_name` should be the parent object of the one with TYPE of `crypt`, set it
LVMPART=`/dev/some_name`
Check LVM partition meta by dumping it
sudo cryptsetup luksDump $LVMPART
Add new key (you can have multiple keys)
sudo cryptsetup luksAddKey $LVMPART
After dumping it again, you should see multiple keys
sudo cryptsetup luksDump $LVMPART
Delete old key if desired
sudo cryptsetup luksRemoveKey $LVMPART
add a comment |
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
39
down vote
accepted
Here is the answer that worked for me, after Hamish helped me to realize my typo.
First, you need to find out which is the encrypted LVM partition, it may be sda3, but it can also be sda5, sdX2, ...:
cat /etc/crypttab
To add a new password, use luksAddKey:
sudo cryptsetup luksAddKey /dev/sda3
To remove an existing password, use luksRemoveKey:
sudo cryptsetup luksRemoveKey /dev/sda3
View currently used slots of the encrypted partition:
sudo cryptsetup luksDump /dev/sd3
Cited from this blog. Thanks.
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
add a comment |
up vote
39
down vote
accepted
Here is the answer that worked for me, after Hamish helped me to realize my typo.
First, you need to find out which is the encrypted LVM partition, it may be sda3, but it can also be sda5, sdX2, ...:
cat /etc/crypttab
To add a new password, use luksAddKey:
sudo cryptsetup luksAddKey /dev/sda3
To remove an existing password, use luksRemoveKey:
sudo cryptsetup luksRemoveKey /dev/sda3
View currently used slots of the encrypted partition:
sudo cryptsetup luksDump /dev/sd3
Cited from this blog. Thanks.
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
add a comment |
up vote
39
down vote
accepted
up vote
39
down vote
accepted
Here is the answer that worked for me, after Hamish helped me to realize my typo.
First, you need to find out which is the encrypted LVM partition, it may be sda3, but it can also be sda5, sdX2, ...:
cat /etc/crypttab
To add a new password, use luksAddKey:
sudo cryptsetup luksAddKey /dev/sda3
To remove an existing password, use luksRemoveKey:
sudo cryptsetup luksRemoveKey /dev/sda3
View currently used slots of the encrypted partition:
sudo cryptsetup luksDump /dev/sd3
Cited from this blog. Thanks.
Here is the answer that worked for me, after Hamish helped me to realize my typo.
First, you need to find out which is the encrypted LVM partition, it may be sda3, but it can also be sda5, sdX2, ...:
cat /etc/crypttab
To add a new password, use luksAddKey:
sudo cryptsetup luksAddKey /dev/sda3
To remove an existing password, use luksRemoveKey:
sudo cryptsetup luksRemoveKey /dev/sda3
View currently used slots of the encrypted partition:
sudo cryptsetup luksDump /dev/sd3
Cited from this blog. Thanks.
edited Nov 22 at 1:16
answered Mar 5 '12 at 12:58
Filbuntu
2,620144274
2,620144274
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
add a comment |
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
1
1
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
does this imply you can have more than one password to unencrypt the disk?
– bph
Jan 18 '16 at 16:05
4
4
You can. I tested it out
– bph
Jan 25 '16 at 22:31
You can. I tested it out
– bph
Jan 25 '16 at 22:31
1
1
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
There are slots - eight of them I believe. Each slot is an unlock option. Could be 8 passwords if you wanted.
– Cookie
Jul 31 '16 at 14:44
add a comment |
up vote
22
down vote
Download "Disks" from Software Manager. Run it. Select your encrypted device partition. Click gear icon. Select "Change passphrase". That's it
add a comment |
up vote
22
down vote
Download "Disks" from Software Manager. Run it. Select your encrypted device partition. Click gear icon. Select "Change passphrase". That's it
add a comment |
up vote
22
down vote
up vote
22
down vote
Download "Disks" from Software Manager. Run it. Select your encrypted device partition. Click gear icon. Select "Change passphrase". That's it
Download "Disks" from Software Manager. Run it. Select your encrypted device partition. Click gear icon. Select "Change passphrase". That's it
answered Nov 28 '14 at 3:43
zoubak
22122
22122
add a comment |
add a comment |
up vote
11
down vote
Without thinking I set the passphrase to be really long, and it became a pain to type. I ended up using the following to change it to something more manageable.
sudo cryptsetup luksChangeKey /dev/sda5
add a comment |
up vote
11
down vote
Without thinking I set the passphrase to be really long, and it became a pain to type. I ended up using the following to change it to something more manageable.
sudo cryptsetup luksChangeKey /dev/sda5
add a comment |
up vote
11
down vote
up vote
11
down vote
Without thinking I set the passphrase to be really long, and it became a pain to type. I ended up using the following to change it to something more manageable.
sudo cryptsetup luksChangeKey /dev/sda5
Without thinking I set the passphrase to be really long, and it became a pain to type. I ended up using the following to change it to something more manageable.
sudo cryptsetup luksChangeKey /dev/sda5
answered May 9 '15 at 1:41
jc00ke
23123
23123
add a comment |
add a comment |
up vote
11
down vote
To see the slots used:
sudo cryptsetup luksDump /dev/sda5
And to find out which partition to use
cat /etc/crypttab
And if it is listed by uuid, use
ls -l /dev/disk/by-uuid/{insert your uuid here}
Then use
sudo cryptsetup luksAddKey /dev/sda5
sudo cryptsetup luksRemoveKey /dev/sda5
or
sudo cryptsetup luksChangeKey /dev/sda5
and for faster reference (assuming only 1 entry in /etc/crypttab)
sudo cryptsetup luksAddKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
sudo cryptsetup luksChangeKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
add a comment |
up vote
11
down vote
To see the slots used:
sudo cryptsetup luksDump /dev/sda5
And to find out which partition to use
cat /etc/crypttab
And if it is listed by uuid, use
ls -l /dev/disk/by-uuid/{insert your uuid here}
Then use
sudo cryptsetup luksAddKey /dev/sda5
sudo cryptsetup luksRemoveKey /dev/sda5
or
sudo cryptsetup luksChangeKey /dev/sda5
and for faster reference (assuming only 1 entry in /etc/crypttab)
sudo cryptsetup luksAddKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
sudo cryptsetup luksChangeKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
add a comment |
up vote
11
down vote
up vote
11
down vote
To see the slots used:
sudo cryptsetup luksDump /dev/sda5
And to find out which partition to use
cat /etc/crypttab
And if it is listed by uuid, use
ls -l /dev/disk/by-uuid/{insert your uuid here}
Then use
sudo cryptsetup luksAddKey /dev/sda5
sudo cryptsetup luksRemoveKey /dev/sda5
or
sudo cryptsetup luksChangeKey /dev/sda5
and for faster reference (assuming only 1 entry in /etc/crypttab)
sudo cryptsetup luksAddKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
sudo cryptsetup luksChangeKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
To see the slots used:
sudo cryptsetup luksDump /dev/sda5
And to find out which partition to use
cat /etc/crypttab
And if it is listed by uuid, use
ls -l /dev/disk/by-uuid/{insert your uuid here}
Then use
sudo cryptsetup luksAddKey /dev/sda5
sudo cryptsetup luksRemoveKey /dev/sda5
or
sudo cryptsetup luksChangeKey /dev/sda5
and for faster reference (assuming only 1 entry in /etc/crypttab)
sudo cryptsetup luksAddKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
sudo cryptsetup luksChangeKey /dev/disk/by-uuid/$(cat /etc/crypttab | sed -e "s|(.*) UUID=(.*) none.*|2|g")
edited Aug 17 '16 at 9:09
answered Aug 10 '16 at 14:20
Cookie
4911715
4911715
add a comment |
add a comment |
up vote
6
down vote
The encrypted partition may well be using /dev/sda5 (note the a in sda5) and that is the device you probably need to use (unless that is just a typo in your question).
However the encrypted device itself will have another name - something like /dev/mapper/cryptroot. For the device name you could:
- look in the file
/etc/crypttab- this will have both the partition and the mapper name in it, but only for permanent partitions - run
mountand see what the mapper name is - this is useful when you have plugged in an encrypted disk via USB. (Though I'm not sure how you then find the actual underlying device name).
add a comment |
up vote
6
down vote
The encrypted partition may well be using /dev/sda5 (note the a in sda5) and that is the device you probably need to use (unless that is just a typo in your question).
However the encrypted device itself will have another name - something like /dev/mapper/cryptroot. For the device name you could:
- look in the file
/etc/crypttab- this will have both the partition and the mapper name in it, but only for permanent partitions - run
mountand see what the mapper name is - this is useful when you have plugged in an encrypted disk via USB. (Though I'm not sure how you then find the actual underlying device name).
add a comment |
up vote
6
down vote
up vote
6
down vote
The encrypted partition may well be using /dev/sda5 (note the a in sda5) and that is the device you probably need to use (unless that is just a typo in your question).
However the encrypted device itself will have another name - something like /dev/mapper/cryptroot. For the device name you could:
- look in the file
/etc/crypttab- this will have both the partition and the mapper name in it, but only for permanent partitions - run
mountand see what the mapper name is - this is useful when you have plugged in an encrypted disk via USB. (Though I'm not sure how you then find the actual underlying device name).
The encrypted partition may well be using /dev/sda5 (note the a in sda5) and that is the device you probably need to use (unless that is just a typo in your question).
However the encrypted device itself will have another name - something like /dev/mapper/cryptroot. For the device name you could:
- look in the file
/etc/crypttab- this will have both the partition and the mapper name in it, but only for permanent partitions - run
mountand see what the mapper name is - this is useful when you have plugged in an encrypted disk via USB. (Though I'm not sure how you then find the actual underlying device name).
answered Mar 4 '12 at 16:40
Hamish Downer
13.9k125688
13.9k125688
add a comment |
add a comment |
up vote
0
down vote
I had issues locating partition name, so created this guide:
Locate your LMV partition
# install jq if you don't have it
sudo apt-get install jq
# find LVM partition
LVMPART=$(lsblk -p --json | jq -r '.blockdevices | select(.children) | .children | select(.children) as $partition | .children | select(.type == "crypt") | $partition.name')
# check if it was found
echo $LVMPART
# (optional)
# if above output is empty, locate it in a tree view using this command
lsblk -p
# partition `/dev/some_name` should be the parent object of the one with TYPE of `crypt`, set it
LVMPART=`/dev/some_name`
Check LVM partition meta by dumping it
sudo cryptsetup luksDump $LVMPART
Add new key (you can have multiple keys)
sudo cryptsetup luksAddKey $LVMPART
After dumping it again, you should see multiple keys
sudo cryptsetup luksDump $LVMPART
Delete old key if desired
sudo cryptsetup luksRemoveKey $LVMPART
add a comment |
up vote
0
down vote
I had issues locating partition name, so created this guide:
Locate your LMV partition
# install jq if you don't have it
sudo apt-get install jq
# find LVM partition
LVMPART=$(lsblk -p --json | jq -r '.blockdevices | select(.children) | .children | select(.children) as $partition | .children | select(.type == "crypt") | $partition.name')
# check if it was found
echo $LVMPART
# (optional)
# if above output is empty, locate it in a tree view using this command
lsblk -p
# partition `/dev/some_name` should be the parent object of the one with TYPE of `crypt`, set it
LVMPART=`/dev/some_name`
Check LVM partition meta by dumping it
sudo cryptsetup luksDump $LVMPART
Add new key (you can have multiple keys)
sudo cryptsetup luksAddKey $LVMPART
After dumping it again, you should see multiple keys
sudo cryptsetup luksDump $LVMPART
Delete old key if desired
sudo cryptsetup luksRemoveKey $LVMPART
add a comment |
up vote
0
down vote
up vote
0
down vote
I had issues locating partition name, so created this guide:
Locate your LMV partition
# install jq if you don't have it
sudo apt-get install jq
# find LVM partition
LVMPART=$(lsblk -p --json | jq -r '.blockdevices | select(.children) | .children | select(.children) as $partition | .children | select(.type == "crypt") | $partition.name')
# check if it was found
echo $LVMPART
# (optional)
# if above output is empty, locate it in a tree view using this command
lsblk -p
# partition `/dev/some_name` should be the parent object of the one with TYPE of `crypt`, set it
LVMPART=`/dev/some_name`
Check LVM partition meta by dumping it
sudo cryptsetup luksDump $LVMPART
Add new key (you can have multiple keys)
sudo cryptsetup luksAddKey $LVMPART
After dumping it again, you should see multiple keys
sudo cryptsetup luksDump $LVMPART
Delete old key if desired
sudo cryptsetup luksRemoveKey $LVMPART
I had issues locating partition name, so created this guide:
Locate your LMV partition
# install jq if you don't have it
sudo apt-get install jq
# find LVM partition
LVMPART=$(lsblk -p --json | jq -r '.blockdevices | select(.children) | .children | select(.children) as $partition | .children | select(.type == "crypt") | $partition.name')
# check if it was found
echo $LVMPART
# (optional)
# if above output is empty, locate it in a tree view using this command
lsblk -p
# partition `/dev/some_name` should be the parent object of the one with TYPE of `crypt`, set it
LVMPART=`/dev/some_name`
Check LVM partition meta by dumping it
sudo cryptsetup luksDump $LVMPART
Add new key (you can have multiple keys)
sudo cryptsetup luksAddKey $LVMPART
After dumping it again, you should see multiple keys
sudo cryptsetup luksDump $LVMPART
Delete old key if desired
sudo cryptsetup luksRemoveKey $LVMPART
edited Nov 21 at 18:55
answered Nov 21 at 18:30
user2174835
11
11
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f109898%2fhow-to-change-the-password-of-an-encrypted-lvm-system-done-with-the-alternate-i%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Oops, it was indeed a typo! I always typed /dev/sd5 instead of /dev/sd5. Thanks Hamish for the hint. So I answer the question with the information from Andreas Härter (blog.andreas-haerter.com/2011/06/18/ubuntu-full-disk-encryption-lvm-luks#tips_and_tricks)
– Filbuntu
Mar 5 '12 at 12:53
2
possible duplicate of How to change LUKS passphrase?
– Gilles
Jul 11 '12 at 23:09