Page 1 of 2 12 LastLast
Results 1 to 10 of 18

Thread: Deactivate encryption for /home folders & change mountpoint for /home folder

  1. #1
    Join Date
    Apr 2009
    Beans
    8
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Deactivate encryption for /home folders & change mountpoint for /home folder

    Hello!

    I have just installed the new release of ubuntu 9.04.
    While installing I chose to have my /home folders encrypted.
    Now I would like to get rid of this encryption as I am to afraid to somehow lose my data and never be able to decrypt it.

    And - I would like to move my /home folder to a seperate partition.

    Both things I should probably have done while setting up.

    Is there a way to change things from a running system?

    Thanks a lot!

    chnorth

  2. #2
    Join Date
    Apr 2009
    Beans
    8
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    No ideas how to turn of the home folder encryption?

    Might it be enough to take the user out of the FUSE-Group?
    with
    $ sudo fuse deluser username

    ??
    Or is this to much?

    Thank you for any help!

    chnorth

  3. #3
    Join Date
    Oct 2007
    Location
    Berlin
    Beans
    36
    Distro
    Ubuntu Studio 12.04 Precise Pangolin

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    I have the same question. I need to move my encrypted /home to separate partition. Can I simply move my /home without extra steps?

    Update..- I have moved my /home to separate partition inside live CD (another distribution), old /home and new partition was mounted and encrypted data was just placed on new partition without any problems (by copying). fstab was edited. Everething works.
    Last edited by bajun; June 6th, 2009 at 10:02 PM.

  4. #4
    Join Date
    Apr 2006
    Beans
    3

    Smile Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    Hi,

    Just had the same problem, and just found the solution...

    1st thing to do : BACKUP YOUR HOME
    I can't say it louder... basically undoing encryption is equivalent to resetting (rm -rf) your home, which is in fact hidden by a mount.

    2nd step : log out of any desktop manager and go to a virtual console (CTRL-ALT-F1)

    Finally : for details :

    $ ecryptfs-setup-private --undo

    In the event that you want to remove your eCryptfs Private Directory setup,
    you will need to very carefully perform the following actions manually:

    1. Obtain your Private directory mountpoint
    $ PRIVATE=`cat ~/.ecryptfs/Private.mnt 2>/dev/null || echo $HOME/Private`
    2. Ensure that you have moved all relevant data out of your $PRIVATE directory
    3. Unmount your encrypted private directory
    $ ecryptfs-umount-private
    4. Make your Private directory writable again
    $ chmod 700 $PRIVATE
    5. Remove $PRIVATE, ~/.Private, ~/.ecryptfs
    Note: THIS IS VERY PERMANENT, BE VERY CAREFUL
    $ rm -rf $PRIVATE ~/.Private ~/.ecryptfs
    6. Uninstall the utilities (this is specific to your Linux distribution)
    $ sudo apt-get remove ecryptfs-utils libecryptfs0

    I would say step 5 is a bit wrong : there's no need to delete $PRIVATE, which was for me my home....

    After .Private and .ecryptfs deletion, just restore your home :]

    Cheers

  5. #5
    Join Date
    Feb 2009
    Location
    Quebec
    Beans
    62
    Distro
    Ubuntu 14.04 Trusty Tahr

    Deactivate encryption for /home !

    Yikes! I want to get rid of the encryption but I don't understand the procedure...stuck after the command :
    Code:
    1. Obtain your Private directory mountpoint
    $ PRIVATE=`cat ~/.ecryptfs/Private.mnt 2>/dev/null || echo $HOME/Private`
    expected a return (?)...didn't get any...what now?
    "What senses do we lack, that we cannot see[...] a world all around us?" F. Herbert, DUNE

  6. #6
    Join Date
    Jul 2008
    Location
    Alabama, USA
    Beans
    906
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Deactivate encryption for /home !

    Quote Originally Posted by Aviendha09 View Post
    Yikes! I want to get rid of the encryption but I don't understand the procedure...stuck after the command :
    Code:
    1. Obtain your Private directory mountpoint
    $ PRIVATE=`cat ~/.ecryptfs/Private.mnt 2>/dev/null || echo $HOME/Private`
    expected a return (?)...didn't get any...what now?
    That's because the output of cat is going to the PRIVATE variable. If you want to check it, type "echo $PRIVATE"

  7. #7
    Join Date
    Feb 2009
    Location
    Quebec
    Beans
    62
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    Worked, phew! Learned something the hard way!
    "What senses do we lack, that we cannot see[...] a world all around us?" F. Herbert, DUNE

  8. #8
    Join Date
    Jan 2008
    Beans
    30
    Distro
    Ubuntu

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    I installed full disk encryption on 9.01 on a netbook and enabled /home encryption as well - I now think this was a bad idea? Should I go through the hassle of removing it as above or just re-install the whole thing again as an easier option?

  9. #9
    Join Date
    Feb 2009
    Location
    Quebec
    Beans
    62
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    The procedure is fairly straigthforward after that point where I hesitated. Higher up in this post there's a link to another one on the subject with more details.

    I think one is better to encrypt small, unimportant folders at first, just to get around the first difficulties one will encounter, without the stress that losing important files generates.
    "What senses do we lack, that we cannot see[...] a world all around us?" F. Herbert, DUNE

  10. #10
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Beans
    12
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Deactivate encryption for /home folders & change mountpoint for /home folder

    Quote Originally Posted by rominet7777 View Post
    Hi,

    Just had the same problem, and just found the solution...

    1st thing to do : BACKUP YOUR HOME
    I can't say it louder... basically undoing encryption is equivalent to resetting (rm -rf) your home, which is in fact hidden by a mount.

    2nd step : log out of any desktop manager and go to a virtual console (CTRL-ALT-F1)

    Finally : for details :

    $ ecryptfs-setup-private --undo

    In the event that you want to remove your eCryptfs Private Directory setup,
    you will need to very carefully perform the following actions manually:

    1. Obtain your Private directory mountpoint
    $ PRIVATE=`cat ~/.ecryptfs/Private.mnt 2>/dev/null || echo $HOME/Private`
    2. Ensure that you have moved all relevant data out of your $PRIVATE directory
    3. Unmount your encrypted private directory
    $ ecryptfs-umount-private
    4. Make your Private directory writable again
    $ chmod 700 $PRIVATE
    5. Remove $PRIVATE, ~/.Private, ~/.ecryptfs
    Note: THIS IS VERY PERMANENT, BE VERY CAREFUL
    $ rm -rf $PRIVATE ~/.Private ~/.ecryptfs
    6. Uninstall the utilities (this is specific to your Linux distribution)
    $ sudo apt-get remove ecryptfs-utils libecryptfs0

    I would say step 5 is a bit wrong : there's no need to delete $PRIVATE, which was for me my home....

    After .Private and .ecryptfs deletion, just restore your home :]

    Cheers

    Not to bring up an old thread but in case anyone has errors trying to follow these instructions, here is what I did.

    1. Backup the home directory while you are logged in
    sudo cp -rp /home/user /home/user.backup
    1.1. Check that your home backup has everything!!!
    2. reboot into root via grub
    3. Delete your home directory
    rm -rf /home/user
    4. Remove the packages
    apt-get remove ecryptfs-utils libecryptfs0
    5. Restore your home directory
    mv /home/user.backup /home/user
    6. reboot
    7. Remove any of those .Private .ecryptfs folders
    rm -rf ~/.Private
    rm -rf ~/.ecryptfs
    8. Yay!

    This worked for me. Home folder file permissions stay intact and does not bugger up Dropbox or git repos. Some reason my fresh install on Ubuntu 9.10 would not do the first command. Just make sure you think the process through when using rm -rf.

    Just wanted to post this not only for my record, but anyone else who encounters problems.


Page 1 of 2 12 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •