Page 1 of 1

Using "Curator's Workbench" on Ubuntu 12.04 (precise)

Posted: Thu Mar 21, 2013 9:46 am
by ^rooker
I stumbled over a tool called "Curator's Workbench" (from UNC-Chapel Hill) which might be interesting for digital archiving.

In order to run the Workbench, you need to install Java 7 Runtime-Environment (JRE), and tell your system to use JRE7 (rather than JRE6):

Code: Select all

$ apt-get install openjdk-7-jre
NOTE: Many HowTos for installing Java7 on e.g. Ubuntu tell you how to install Oracle's JRE
but Oracle's Java version still contains some precompiled binaries that Sun didn't have copyright to release under an open-source license.

Now, use "update-alternatives" to point your default "java" executable symlink to version 7:

Code: Select all

sudo update-alternatives --config java
This will present you with some options for java executables that might look like this:

Code: Select all

  Selection    Path                                            Priority   Status
------------------------------------------------------------
* 0            /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java   1061      auto mode
  1            /usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java   1061      manual mode
  2            /usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java   1051      manual mode
Select option #2 (java-7-openjdk-amd64).

Now download the GNU/Linux binaries of Curator's Workbench from their site:
http://www.lib.unc.edu/software/

Unpack it and start the executable "Workbench".

Enjoy! :D

Curator's Workbench: Source code

Posted: Thu Mar 21, 2013 9:56 am
by ^rooker
The source code of "Curator's Workbench" can be found on their git repositories.

Clone the repo to your local disk:

Code: Select all

git clone https://github.com/UNC-Libraries/Curators-Workbench.git
NOTE: Unfortunately, the Workbench is under an Apache 2 license. That is a Free Software compatible license, but it might allow someone to use UNC's great work and release a modified version under a closed, proprietary license.
That could put archives back into vendor-lock-in situations :(