Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can create a local copy of the archive using the following terminal commands:


Code Block
languagebash
$ mkdir -p ~/Repository/MaterialArchive
 
# Determine the TRACER version number with:
$ ls -l /etc/alternatives/TRACER
 
# Substitute in the version number for <version_number>
$ rsync -av /opt/local/TRACER/<version_number>/bin/Repository/MaterialArchive/ ~/Repository/MaterialArchive/

# Optionally copy the additional CNF Materials Archive files
$ rsync -av /usr/local/cnf/tracer/MaterialArchive/ ~/.GenISys/Repository/MaterialArchive 

...

Code Block
languagebash
# For example:
ls -l /etc/alternatives/TRACER

# Gives output:
lrwxrwxrwx. 1 root root 34 Sep 17  2020 /etc/alternatives/TRACER -> /opt/local/TRACER/2.11.1/bin/run_TRACER

# TheSo setyou ofwould numbersset between "TRACER/" and "/run_TRACER" is the version number.
rsync -av the Global Archive to:
/opt/local/TRACER/2.11.1/bin/Repository/MaterialArchive/ ~/Repository/MaterialArchive/

# The above rsync command will fail if the ~/Repository/MaterialArchive/ folder does not exist. Don't forget to first:
mkdir -p ~/Repository/MaterialArchive

# Optionally copy the additional CNF Materials Archive files
$ rsync -av /usr/local/cnf/tracer/MaterialArchive/ ~/Repository/MaterialArchive

Manual and Videos:

...