Mudanças entre as edições de "Acessando home criptografada no Ubuntu"
De MochilaWiki
Ir para navegaçãoIr para pesquisar (Criou página com '* http://www.vivaolinux.com.br/dica/Acessar-diretorio-home-criptografado-pelo-Ubuntu-usando-livecd * http://askubuntu.com/questions/60601/unwrapping-passphrase-and-inserting-i...') |
|||
Linha 5: | Linha 5: | ||
* http://www.tech.theplayhub.com/unwrapping_passphrase_and_inserting_into_the_user_session_keyring_failed/ | * http://www.tech.theplayhub.com/unwrapping_passphrase_and_inserting_into_the_user_session_keyring_failed/ | ||
* http://tomelec.net/w/index.php/Ubuntu:_Restore_your_encrypted_home_directory | * http://tomelec.net/w/index.php/Ubuntu:_Restore_your_encrypted_home_directory | ||
+ | |||
+ | == instalando == | ||
+ | sudo apt-get install -y ecryptfs-utils | ||
+ | |||
+ | |||
+ | == recuperando == | ||
+ | <source lang="bash"> | ||
+ | # ecryptfs-recover-private | ||
+ | # mv /home/username /home/usernameOLD | ||
+ | # mkdir /home/username | ||
+ | # rsync -avR /tmp/ecryptfs.XXXXXXXX /home/username | ||
+ | </source> |
Edição atual tal como às 17h34min de 10 de julho de 2015
- http://www.vivaolinux.com.br/dica/Acessar-diretorio-home-criptografado-pelo-Ubuntu-usando-livecd
- http://askubuntu.com/questions/60601/unwrapping-passphrase-and-inserting-into-the-user-session-keyring-failed
- http://blog.dustinkirkland.com/2011/04/introducing-ecryptfs-recover-private.html
- http://ubuntuforums.org/showthread.php?t=1871122
- http://www.tech.theplayhub.com/unwrapping_passphrase_and_inserting_into_the_user_session_keyring_failed/
- http://tomelec.net/w/index.php/Ubuntu:_Restore_your_encrypted_home_directory
instalando
sudo apt-get install -y ecryptfs-utils
recuperando
# ecryptfs-recover-private
# mv /home/username /home/usernameOLD
# mkdir /home/username
# rsync -avR /tmp/ecryptfs.XXXXXXXX /home/username