Changes between Initial Version and Version 1 of cypress/Unison


Ignore:
Timestamp:
06/18/21 21:51:17 (3 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Unison

    v1 v1  
     1= Unison =
     2Unison is a file-synchronization tool for OSX, Unix, and Windows. It allows two replicas of a collection of files and directories to be stored on different hosts (or different disks on the same host), modified separately, and then brought up to date by propagating the changes in each replica to the other.
     3[https://www.cis.upenn.edu/~bcpierce/unison/]
     4
     5Unison is installed on Cypress as modules.
     6{{{
     7[user@cypress2 ~]$ module av unison
     8
     9---------------------------------------------------------------------------------- /share/apps/modulefiles -----------------------------------------------------------------------------------
     10unison/2.51.3+ocaml-4.07.0
     11}}}
     12
     13To synchronize between local computer and Cypress, you have to set unison as a default module. To setup default modules, see [https://wiki.hpc.tulane.edu/trac/wiki/cypress/ModuleCommand#UsingHOME.modulerc here].
     14Your ~/.modulerc may be like:
     15{{{
     16#%Module
     17module load unison/2.51.3+ocaml-4.07.0
     18}}}
     19
     20To check unison on Cypress works, on a local computer,
     21{{{
     22user@local bin % ssh user@cypress.tulane.edu unison -version
     23unison version 2.51.3 (ocaml 4.07.0)
     24}}}
     25The version of unison must be printed.
     26
     27
     28See [https://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/unison-manual.html#tutorial tutorial] to learn the basic usage.