No accident in the last article was kicked first page, the mood is very sad mulberry. I hope more people can see
1. Installing codeblocks
Search codeblocks directly in the software center to
2. Install the JDK and configure the environment variables
Http://www.linuxidc.com/Linux/2015-01/112030.htm
(1) First to download the JDKon the official website:http://www.oracle.com/technetwork/java/javase/downloads/ Jdk8-downloads-2133151.html, select the version of Suffix fame . tar.gz Download
(2) Open the terminal at the same time to create a new folder:Sudo/usr/local/java
(3) After downloading, open the folder where you downloaded the file enter the command:CP downloaded file name /usr/local/java
(4) Open Java folder:Cd/usr/local/java
(5) Unzip:sudo tar xvf The downloaded file name, then you can delete the original compressed package sudo rm jdk-8u25-linux-x64.tar.gz
(6) use ls to view the name of the extracted folder, after the need.
(7) Setting environment variables:sudo vim ~/.bashrc
and add it back.
Export java_home=/usr/local/java/jdk1.8.0_25(this name is the sixth step ls out of the name)
Exportjre_home=${java_home}/jre
Exportclasspath=.:${java_home}/lib:${jre_home}/lib
Exportpath=${java_home}/bin: $PATH
Then enter source/etc/profile and let the settings take effect immediately.
(8) Check if the terminal input is successful:java-version
3. Install the eclipse-ee version
(1) access to the official website download:http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release /neon/r/eclipse-jee-neon-r-linux-gtk-x86_64.tar.gz
(2) Open the downloaded folder and move the downloaded file to /opt :sudomv file name /opt
(3) Extract tarxvf file name
(4)Cdeclispe
(5)./eclipse
(6) lock the Eclipse icon on the taskbar and it's OK .
4. install mysql
(1)sudo apt-get update
(2)sudo apt-get install mysql-server mysql-client
(3) in the popup dialog box, write the password, right-click on the OK, select OK to repeat once
(4) input sudo service mysql restart if mysql star/runnig is displayed,process 6905 indicates successful installation
(5 ) let < Span lang= "en-US" >apache support mysql : sudo apt-get install libapache2-mod-auth-mysql
(6) let php support mysql:sudo apt-get install php5-mysql
(7) login mysql:mysql-u root-p
Continuous update ...
Installation of common programming software for Windows to Ubuntu transition