Using "Curator's Workbench" on Ubuntu 12.04 (precise)
Posted: Thu Mar 21, 2013 9:46 am
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):
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:
This will present you with some options for java executables that might look like this:
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!
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
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
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
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!