On this page:
1.1 Operating System
1.2 Graphics Card
1.3 Racket
1.4 Ruckus Source Code
1.4.1 Using the Package
1.4.2 The Hard Way
8.12

1 Prerequisites🔗ℹ

To use Ruckus, you will need:

1.1 Operating System🔗ℹ

Ruckus is developed and tested on Linux. It should also work on other Unix-like operating systems, such as Mac OS X or FreeBSD, but you may encounter surprises. I’d be interested in hearing about any problems you encounter.

There’s no clear technical reason why Ruckus wouldn’t work on Microsoft Windows, but:

If you want to give it a shot, go for it. I’d be interested in any fixes you develop for Windows, but I probably can’t help develop them.

1.2 Graphics Card🔗ℹ

Ruckus uses your computer’s GPU to accelerate certain operations. The better your GPU, the faster you’ll get results.

Currently, best results come from Kepler or Maxwell architecture Nvidia GPUs (say, GTX 650 and later) with recent driver versions. You don’t need a fancy Quadro; they’re actually slower for Ruckus than the mass-market cards of similar age.

Intel HD Graphics built into Haswell and later laptops can be used in a pinch. I do a fair amount of development and testing on a Lenovo T440s.

Older Intel graphics will prove quite frustrating; the Lenovo T430s is unusable.

1.3 Racket🔗ℹ

Ruckus is written in Racket, a programming language from the Lisp family. Because Ruckus is distributed in source form, you will need a copy of the Racket tools to run it.

Ruckus is most heavily tested on Racket version 6.3, which is a recent but not bleeding-edge version.

Ruckus is known not to work on Racket version 5.x, the ancient version currently (spring 2016) being distributed with the Ubuntu LTS. You will need to install Racket manually on such computers.

1.4 Ruckus Source Code🔗ℹ

1.4.1 Using the Package🔗ℹ

The easiest way to install Ruckus is from the Racket package system:

raco pkg install ruckus

Note that this will install the Ruckus executables in a directory that is probably not in your path, something like:

Note that this depends on your Racket version. I don’t know why the Racket folks want us to edit our .profile every time Racket’s version changes.

~/.racket/6.3/bin/

You will either need to add this to your PATH, or manually type it in front of every Ruckus command.

1.4.2 The Hard Way🔗ℹ

Alternatively, you can obtain the source code directly from the Ruckus GitHub repository.

Once you have a copy of the source code, change into the directory and run

raco pkg install

The same warning about the executables not being in your path (above) applies to manual installations.