http://www.ece.ubc.ca/~samera/TA/411/project/jre-installation.html
This is script which can be used to install basic utilities and s/w modules on PlanetLab.
#!/bin/bash
sudo yum clean all
sudo yum update
sudo yum -y install less
sudo yum -y install flex
sudo yum -y install bison
sudo yum -y install bc
sudo yum -y install rpm-build
sudo yum -y install ftp
sudo yum -y install cvs
sudo yum -y install gcc
sudo yum -y install automake
sudo yum -y install autoconf
sudo yum -y install libpcap
sudo yum -y install make
sudo yum -y install wget
exit 0
# Download the jre.tar.gz(http://www.ece.ubc.ca/~samera/TA/411/project/jre.tar.gz) file.
# Copy the file to the remote machine using scp command.
# Unzip and extract the file to your home directory.
# Add the following lines to you .bash_profile file, where
# PATH=/home/SLICE_NAME/jre1.6.0_07/bin:$PATH
# export PATH
# Where:
# SLICE_NAME is your slice name (for example usf_scatter)
No comments:
Post a Comment