Guest User

Untitled

a guest
May 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. sudo apt install nautilus-admin
  2.  
  3. UUID=the-UUID-you-copied-from-GParted /mnt/Home2 ext4 defaults 0 2
  4.  
  5. /mnt/Home2/.Private-A /home/<your_user>/Home2 ecryptfs none 0 0
  6.  
  7. #!/bin/bash
  8. MOUNT_POINT=/home/<your user>/Home2
  9. grep -q $MOUNT_POINT /proc/mounts
  10. if [ $? -eq 1 ]; then
  11. mount.ecryptfs_private Home2
  12. fi
  13.  
  14. # Automount additional encrypted home folder
  15. /home/<your user>/.bin/automount_ecryptfs.Home2
Add Comment
Please, Sign In to add comment