Guest User

Untitled

a guest
Nov 20th, 2017
58
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 encfs
  2.  
  3. encfs ~/.encrypt ~/visible
  4.  
  5. fusermount -u ~/visible
  6.  
  7. # This will hide all files in there.
  8.  
  9. encfs ~/.encrypted ~/visible
  10.  
  11. # This will ask you for your password so the files
  12. # in ~/visible will be seen and accessed
  13.  
  14. sudo add-apt-repository ppa:gencfsm
  15. sudo apt update
  16. sudo apt install gnome-encfs-manager
  17.  
  18. for i in /home/$USER/Documents/koko/*; do scrypt enc "$i" "$i-sc"; done
Add Comment
Please, Sign In to add comment