博文

目前显示的是标签为“ubuntu”的博文

Install Oracle Java 7 on Ubuntu 12.04

This tested to be working: http://www.liberiangeek.net/2012/04/install-oracle-java-jdk-7-in-ubuntu-12-04-precise-pangolin/

Installing Eclipse Juno 4.2 in Ubuntu 12.04

Download it here http://www.eclipse.org/downloads/ Extract it Create desktop file eclipse.desktop in /user/share/applications with following properties [Desktop Entry] Name=Eclipse Type=Application Exec=/home/user/Tools/eclipse/eclipse Terminal=false Icon=/home/user/Tools/eclipse/icon.xpm Comment=Integrated Development Environment NoDisplay=false Categories=Development;IDE Name[en]=eclipse.desktop Copy the eclipse.desktop file to desktop You also need to make the file executable chmod -x filename

Install tomcat in ubuntu

1) Find a correct tomcat package to install sudo apt-cache search tomcat 2) Install all Tomcat package with following command sudo apt-get install tomcat5.5-webapps sudo apt-get install tomcat5.5-admin sudo apt-get install tomcat5.5 3) Done apt-get help Ubuntu to configure almost everything and create a script put inside init .d folder for Tomcat auto startup script. we can start/stop/restart Tomcat with following command /etc/init.d/tomcat5.5 start /etc/init.d/tomcat5.5 stop /etc/init.d/tomcat5.5 restart apt-get help to create a share folder in /usr/share also, please access cd /usr/share/tomcat5.5 and issue a ls -lh in /usr/share/tomcat5.5 to find out the rest of the Tomcat location. drwxr-xr-x bin drwxr-xr-x common lrwxrwxrwx conf -> /etc/tomcat5.5 lrwxrwxrwx doc -> ../doc/tomcat5.5 lrwxrwxrwx logs -> /var/lib/tomcat5.5/logs drwxr-xr-x server lrwxrwxrwx shared -> /var/lib/tomcat5.5/shared lrwxrwxrwx temp -> /var/lib/tomcat5.5/temp lrwxrwxr...