#!/bin/bash WG2TAR=`pwd`; echo ""; echo "PREPARING ubuntu 8.04.1 Linux for BibGlimpse"; echo "----------------------------------------------------------------"; echo ""; echo "This script was written for ubuntu-8.04.1-desktop-amd64:"; echo "http://ubuntu.gds.tuwien.ac.at/cdimage/releases/hardy/ubuntu-8.04.1-desktop-amd64.iso"; echo ""; # install emacs (for convenience) echo "Installing emacs..."; sudo apt-get install emacs; # install flex echo "Installing flex..."; sudo apt-get install flex; # install for compiling glimpse # (otherwise complains "C compiler cannot create executables") echo "Installing libc6-dev..."; sudo apt-get install libc6-dev; echo "Finished installing packages for BibGlimpse."; echo "You can now proceed with BibGlimpse.SETUP.";