Issues recovering and encrypted home drive
I have an encrypted home folder from a 16.04 install that survived an upgrade to 18.04. Later, in 18.04, everything went wrong and now I'm having to recover my home folder from a live USB so I can copy the contents of the home folder to an external hard drive. (I'm recovering with an ubuntu-mate live USB.)
The home drive encryption was done with all the standard options on install.
Using the following command I can mount the drive (with appropriate substitutions for UUID and UNAME):
sudo mount -t ecryptfs /media/ubuntu-mate/UUID/home/.ecryptfs/UNAME/.Private /home/ubuntu-mate/Private
Here is the issue:
If I mount with the option "n" for encrypted file names, it successfully mounts but I clearly have a bunch of folders and files with encrypted names.
If I mount with the option "y" for encrypted file names, there is nothing in the mounting folder (it didn't mount?) and there are no error messages.
It does this for either option of "y" or "n" for plain text passthrough.
mount encryption ecryptfs
add a comment |
I have an encrypted home folder from a 16.04 install that survived an upgrade to 18.04. Later, in 18.04, everything went wrong and now I'm having to recover my home folder from a live USB so I can copy the contents of the home folder to an external hard drive. (I'm recovering with an ubuntu-mate live USB.)
The home drive encryption was done with all the standard options on install.
Using the following command I can mount the drive (with appropriate substitutions for UUID and UNAME):
sudo mount -t ecryptfs /media/ubuntu-mate/UUID/home/.ecryptfs/UNAME/.Private /home/ubuntu-mate/Private
Here is the issue:
If I mount with the option "n" for encrypted file names, it successfully mounts but I clearly have a bunch of folders and files with encrypted names.
If I mount with the option "y" for encrypted file names, there is nothing in the mounting folder (it didn't mount?) and there are no error messages.
It does this for either option of "y" or "n" for plain text passthrough.
mount encryption ecryptfs
Use theecryptfs-recover-private
program (script) instead, it should handle all the details for you.
– Xen2050
Feb 17 at 7:42
add a comment |
I have an encrypted home folder from a 16.04 install that survived an upgrade to 18.04. Later, in 18.04, everything went wrong and now I'm having to recover my home folder from a live USB so I can copy the contents of the home folder to an external hard drive. (I'm recovering with an ubuntu-mate live USB.)
The home drive encryption was done with all the standard options on install.
Using the following command I can mount the drive (with appropriate substitutions for UUID and UNAME):
sudo mount -t ecryptfs /media/ubuntu-mate/UUID/home/.ecryptfs/UNAME/.Private /home/ubuntu-mate/Private
Here is the issue:
If I mount with the option "n" for encrypted file names, it successfully mounts but I clearly have a bunch of folders and files with encrypted names.
If I mount with the option "y" for encrypted file names, there is nothing in the mounting folder (it didn't mount?) and there are no error messages.
It does this for either option of "y" or "n" for plain text passthrough.
mount encryption ecryptfs
I have an encrypted home folder from a 16.04 install that survived an upgrade to 18.04. Later, in 18.04, everything went wrong and now I'm having to recover my home folder from a live USB so I can copy the contents of the home folder to an external hard drive. (I'm recovering with an ubuntu-mate live USB.)
The home drive encryption was done with all the standard options on install.
Using the following command I can mount the drive (with appropriate substitutions for UUID and UNAME):
sudo mount -t ecryptfs /media/ubuntu-mate/UUID/home/.ecryptfs/UNAME/.Private /home/ubuntu-mate/Private
Here is the issue:
If I mount with the option "n" for encrypted file names, it successfully mounts but I clearly have a bunch of folders and files with encrypted names.
If I mount with the option "y" for encrypted file names, there is nothing in the mounting folder (it didn't mount?) and there are no error messages.
It does this for either option of "y" or "n" for plain text passthrough.
mount encryption ecryptfs
mount encryption ecryptfs
asked Feb 17 at 2:07
bcdavisbcdavis
1
1
Use theecryptfs-recover-private
program (script) instead, it should handle all the details for you.
– Xen2050
Feb 17 at 7:42
add a comment |
Use theecryptfs-recover-private
program (script) instead, it should handle all the details for you.
– Xen2050
Feb 17 at 7:42
Use the
ecryptfs-recover-private
program (script) instead, it should handle all the details for you.– Xen2050
Feb 17 at 7:42
Use the
ecryptfs-recover-private
program (script) instead, it should handle all the details for you.– Xen2050
Feb 17 at 7:42
add a comment |
1 Answer
1
active
oldest
votes
I'm not sure why, but the ecryptfs-recover-private did not work for me. It couldn't find the encrypted directory even when searching in the vicinity.
I was able to find the answer here:
How do I mount an encrypted /home directory on another Ubuntu machine?
It only works if you do exactly what it says. It looks like the ecrytpfs command defaults to the first of two entries in the File Name Encryption Key (FNEK). Per the link above, I first had to use a different command that returns TWO keys (and adds them to a keyring). Then I had to manually paste in the second key where ecrytpfs defaults to the first key. Worked perfectly after that.
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%2f1118877%2fissues-recovering-and-encrypted-home-drive%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
I'm not sure why, but the ecryptfs-recover-private did not work for me. It couldn't find the encrypted directory even when searching in the vicinity.
I was able to find the answer here:
How do I mount an encrypted /home directory on another Ubuntu machine?
It only works if you do exactly what it says. It looks like the ecrytpfs command defaults to the first of two entries in the File Name Encryption Key (FNEK). Per the link above, I first had to use a different command that returns TWO keys (and adds them to a keyring). Then I had to manually paste in the second key where ecrytpfs defaults to the first key. Worked perfectly after that.
add a comment |
I'm not sure why, but the ecryptfs-recover-private did not work for me. It couldn't find the encrypted directory even when searching in the vicinity.
I was able to find the answer here:
How do I mount an encrypted /home directory on another Ubuntu machine?
It only works if you do exactly what it says. It looks like the ecrytpfs command defaults to the first of two entries in the File Name Encryption Key (FNEK). Per the link above, I first had to use a different command that returns TWO keys (and adds them to a keyring). Then I had to manually paste in the second key where ecrytpfs defaults to the first key. Worked perfectly after that.
add a comment |
I'm not sure why, but the ecryptfs-recover-private did not work for me. It couldn't find the encrypted directory even when searching in the vicinity.
I was able to find the answer here:
How do I mount an encrypted /home directory on another Ubuntu machine?
It only works if you do exactly what it says. It looks like the ecrytpfs command defaults to the first of two entries in the File Name Encryption Key (FNEK). Per the link above, I first had to use a different command that returns TWO keys (and adds them to a keyring). Then I had to manually paste in the second key where ecrytpfs defaults to the first key. Worked perfectly after that.
I'm not sure why, but the ecryptfs-recover-private did not work for me. It couldn't find the encrypted directory even when searching in the vicinity.
I was able to find the answer here:
How do I mount an encrypted /home directory on another Ubuntu machine?
It only works if you do exactly what it says. It looks like the ecrytpfs command defaults to the first of two entries in the File Name Encryption Key (FNEK). Per the link above, I first had to use a different command that returns TWO keys (and adds them to a keyring). Then I had to manually paste in the second key where ecrytpfs defaults to the first key. Worked perfectly after that.
answered Feb 18 at 18:35
bcdavisbcdavis
1
1
add a comment |
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%2f1118877%2fissues-recovering-and-encrypted-home-drive%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
Use the
ecryptfs-recover-private
program (script) instead, it should handle all the details for you.– Xen2050
Feb 17 at 7:42