Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
how_to [2019/02/06 05:33] – [Install R locally (e.g. on a cluster)?] adminhow_to [2019/02/06 05:47] – [Install R locally (e.g. on a cluster)?] admin
Line 356: Line 356:
 ---- ----
  
-==   Encrypt a folder?    ==+== Encrypt a folder? ==
  
-Use the 7z AES-256+Compress the folder in 7z format using the AES-256 encrypting algorithm. [[https://www.dzhang.com/blog/2018/03/11/using-7-zip-create-aes-256-encrypted-zip-files-command-line|E.g]], 
 + 
 +<code> 
 +7z a -tzip -mem=AES256 -p super-secret.7z super-secret_folder 
 + 
 +7z x super-secret.7z ## Decrypt and uncomperess 
 +</code> 
 + 
 +----