Not sure of /etc/crypttab entry on Ubuntu 18.04
I have been following the following guides:
http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/
How can I install Ubuntu encrypted with LUKS with dual-boot?
I have created a 4G Swap Partition on the encrypted LVM partition as per the latter link however not sure of the entry to use in /etc/crypttab file.
If I run:
blkid | grep swap
/dev/mapper/vgroot-lvswap: UUID="12345678987654321" TYPE=swap
Does the entry need to be
vgroot-lvswap UID=12345678987654321 /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
partitioning encryption swap
add a comment |
I have been following the following guides:
http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/
How can I install Ubuntu encrypted with LUKS with dual-boot?
I have created a 4G Swap Partition on the encrypted LVM partition as per the latter link however not sure of the entry to use in /etc/crypttab file.
If I run:
blkid | grep swap
/dev/mapper/vgroot-lvswap: UUID="12345678987654321" TYPE=swap
Does the entry need to be
vgroot-lvswap UID=12345678987654321 /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
partitioning encryption swap
add a comment |
I have been following the following guides:
http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/
How can I install Ubuntu encrypted with LUKS with dual-boot?
I have created a 4G Swap Partition on the encrypted LVM partition as per the latter link however not sure of the entry to use in /etc/crypttab file.
If I run:
blkid | grep swap
/dev/mapper/vgroot-lvswap: UUID="12345678987654321" TYPE=swap
Does the entry need to be
vgroot-lvswap UID=12345678987654321 /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
partitioning encryption swap
I have been following the following guides:
http://www.cim.mcgill.ca/~anqixu/blog/index.php/2018/06/20/install-18-04-on-encrypted-partitions-xps15-cuda/
How can I install Ubuntu encrypted with LUKS with dual-boot?
I have created a 4G Swap Partition on the encrypted LVM partition as per the latter link however not sure of the entry to use in /etc/crypttab file.
If I run:
blkid | grep swap
/dev/mapper/vgroot-lvswap: UUID="12345678987654321" TYPE=swap
Does the entry need to be
vgroot-lvswap UID=12345678987654321 /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
partitioning encryption swap
partitioning encryption swap
asked Jan 3 at 22:27
drossdross
1084
1084
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your format is valid for entry in the /etc/crypttab
but update your UID
to UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
And also make sure the name vgroot-lvswap
is the name you used when you ran sudo cryptsetup luksOpen .... name_of_device_mapper
!
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f1106743%2fnot-sure-of-etc-crypttab-entry-on-ubuntu-18-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your format is valid for entry in the /etc/crypttab
but update your UID
to UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
And also make sure the name vgroot-lvswap
is the name you used when you ran sudo cryptsetup luksOpen .... name_of_device_mapper
!
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
add a comment |
Your format is valid for entry in the /etc/crypttab
but update your UID
to UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
And also make sure the name vgroot-lvswap
is the name you used when you ran sudo cryptsetup luksOpen .... name_of_device_mapper
!
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
add a comment |
Your format is valid for entry in the /etc/crypttab
but update your UID
to UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
And also make sure the name vgroot-lvswap
is the name you used when you ran sudo cryptsetup luksOpen .... name_of_device_mapper
!
Your format is valid for entry in the /etc/crypttab
but update your UID
to UUID
vgroot-lvswap UUID="12345678987654321" /dev/urandom swap,offset=1024,cipher=aes-xts-plain64
And also make sure the name vgroot-lvswap
is the name you used when you ran sudo cryptsetup luksOpen .... name_of_device_mapper
!
answered Jan 3 at 23:05
George UdosenGeorge Udosen
20.8k94569
20.8k94569
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
add a comment |
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
Thanks with the slight adjustment things seem to be running nicely now.
– dross
Jan 3 at 23:27
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f1106743%2fnot-sure-of-etc-crypttab-entry-on-ubuntu-18-04%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