Java JDK installation:
EEEbuntu comes with OpenJDK already installed, but I prefer having also Sun JDK installed. Java developer kit installation is done by terminal using apt-get command:
sudo apt-get install sun-java6-jdkthen Sun jdk is selected as default jdk by typing the command:
sudo update-java-alternatives --set java-6-sun
Netbeans installation
I first downloaded Netbeans 6.5 from here. I did choose to download the smallest version available to save disk space. I'll add new modules when I'll need them.
I enabled the execute flag in the downloaded file and launched it:
chmod +x netbeans-6.5-ml-javase-linux.shNetbeans installer started and I simply had to agree the license and choose the installation path.
sudo ./netbeans-6.5-ml-javase-linux.sh
Once the installation was completed Netbeans icon automatically appeared in EEEBuntu graphical interface.
Apache Tomcat installation
I downloaded Tomcat archive from here. Then I copied in the destination directory and extracted it:
sudo cp apache-tomcat-6.0.18.tar.gz /opt/Since I installed tomcat on the EEEPC only for development purpose I didn't care about creating a specific user for it. So I simply changed the owner of the installation directory to my own user.
cd /opt
sudo tar -zxvf apache-tomcat-6.0.18.tar.gz
sudo chown --recursive maxx:maxx /opt/apache-tomcat-6.0.18At last I simply started Tomcat by typing:
cd apache-tomcat-6.0.18/and verified it was running at its default address (http://localhost:8080/)
bin/startup.sh
No comments :
Post a Comment