Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

  1. login through an access node (i.e. access4.wexac.weizmann.ac.il) with your credentials.

“StorWIS isn’t intended as an HPC storage service, and we are not allowing heavy computation on access servers. So if you need to run a job with data from StorWIS, you need to move/copy from StorWIS to your WEXAC home folder.”

  1. Create your folder in /home/archive/labs/YOUR_LAB/
    i.e. /home/archive/labs/bioservices/bareket/

  2. Use this command to archive a directory into a tar file, and to save it in your storwis folder.
    Example:

tar czf - DIRECTORY_NAME |  split --bytes=100G - /home/archive/labs/YOUR_LAB/DIRECTORY_NAME.tar.gz.

Change DIRECTORY_NAME to the directory you need to archive and YOUR_LAB to your lab name.

It will create tar files with the names DIRECTORY_NAME.tar.gz.aa, DIRECTORY_NAME.tar.gz.ab, …
each file will have size of 100GB.

To list the contents of the tar files, run:

cat /home/archive/labs/YOUR_LAB/DIRECTORY_NAME.tar.gz.* | tar tzf -

To extract the folder to the current directory, run:

cat /home/archive/labs/YOUR_LAB/DIRECTORY_NAME.tar.gz.* | tar xzvf -

More info in the Wexac page: https://hpcwiki.weizmann.ac.il/en/home/general/backup_restore

  • No labels