QUARTZ Quick Start

Deploying QUARTZ is as simple as copying a folder to your disk.
But before, ensure the Erlang programming language is correctly installed (see Install Erlang).

Windows

Depending on your architecture (32/64-bit), download the right QUARTZ version for Windows at:

Let’s say you want to install QUARTZ version 1.2.5 on Win32:

  1. unzip the file quartz-1.2.5.zip

  2. then, copy the resulting folder quartz-1.2.5 inside the directory c:\erl5.9.1\lib

    QUARTZ install on Windows
    QUARTZ install on Windows
Check that everything’s fine:
c:\> erl -noshell -eval 'io:format("~s~n", [quartz:version()]), halt().'

This command should print 1.2.5

You’re done!



Linux

Same apply to Linux.

Let’s say you want to install the 64-bit QUARTZ version 1.2.5:

  1. download the right QUARTZ version for your architecture (32/64-bit):

    $ wget http://webarchivingbucket.com/quartz/linux/64bit/quartz-1.2.5.tgz
  2. extract and copy the directory under /usr/local/lib/erlang/lib

    $ su
    # tar xzvf quartz-1.2.5.tgz -C /usr/local/lib/erlang/lib
    # exit
Check that everything’s fine:
$ erl -noshell -eval 'io:format("~s~n", [quartz:version()]), halt().'

This command should print 1.2.5

Done!



Mac OSX

Same apply to Mac OSX.

Let’s say you want to install the 32-bit QUARTZ version 1.2.5:

  1. download the right QUARTZ version your architecture (32/64-bit):

    $ wget http://webarchivingbucket.com/quartz/osx/32bit/quartz-1.2.5.tgz
  1. change to root, extract and copy the directory under /usr/local/lib/erlang/lib

    $ su
    # tar xzvf quartz-1.2.5.tgz -C /usr/local/lib/erlang/lib
    # exit
Check that everything’s fine:
$ erl -noshell -eval 'io:format("~s~n", [quartz:version()]), halt().'

This command should print 1.2.5

Done!