Versions Compared

Key

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

...

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

...

Code Block
languagebash
# For example:
ls -l /optetc/localalternatives/TRACER

# Gives output:
total 0
drwxr-xr-xlrwxrwxrwx. 1 6root root 34 Sep root17 159 Dec 11 12:02 2020 /etc/alternatives/TRACER -> /opt/local/TRACER/2.8.1/run_TRACER

# theThe last set of numbers, after a datebetween "TRACER/" and time,"/run_TRACER" is the version
# the version number is, in this case, 2.8.1 . And the copy command would therefore be:
rsync -av /opt/local/TRACER/2.8.1/bin/MaterialArchive/ ~/MaterialArchive/

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

...