Returned 5 Results for "install" Ordered By Relevance
Download the Centos Boot image
Download the Centos DVD image and save it on an NFS enabled share on your lan
Install with Network boot CD
choose to boot: linux text
Choose Manual IPv4
192.168.1.* / 255.255.255.0
192.168.1.*
192.168.1.*
Choose NFS Install
Server: 192.168.1.29
Dir: /install/linux/centos/5.1
Auto install proceeds from here..
install package: yum -y install application_name
(gentoo/ubunto)get package: apt-get application_name
First stop the X Server
This should be done by running sudo gdm stop but ubuntu keeps restarting them
chmod -x /etc/rc3.d/gdm
then drop into init level 3
you must pre-install
sudo apt-get install build-essential linux-headers-$(uname -r)
then sudo sh NVIDIA**.run
to install SSH on ubuntu type:
sudo apt-get install openssh-server
Install:
chmod +x jdk-6u2-linux-i586-rpm.bin
./jdk-6u2-linux-i586-rpm.bin
Follow prompts [yes]/[no] etc
If it gives the error message
error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
Then you have to download
compat-libstdc++-33-3.2.3-47.fc4.i386.rpm
which can be found
ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/
or by googling it
rpm -i compat-libstdc++-33-3.2.3-47.fc4.i386.rpm
or # yum install libstdc++.so.5
The SDK installed in /usr/java/jdk/
add path to $HOME/.bash_profile
PATH=/usr/java/jdk/bin:$PATH:$HOME/bin:./
export PATH
export JAVA_HOME=/usr/java/jdk
export CLASSPATH=/usr/java/jdk/lib/tools.jar:/usr/java/jdk/jre/lib/rt.jar:./
When installing Jboss 4.2.1.GA it throws a fit if you have anything less than Java 1.6 JRE and the 1.5 JDK installed - Centos installs it's own version of Java 1.4 to fulfil install dependencies and this seems to conflict with the Sun versions - make sure you uninstall GNU Java 1.4 from the package manager or any other way you fancy and then install first the 1.6 JRE followed by the 1.5 JDK. After that you can just drag a copy of Jboss onto the linux box and start it with /bin/./run.sh & (to spawn a process)