1. 程式人生 > >虛擬機器ubuntu上安裝JDK,及配置

虛擬機器ubuntu上安裝JDK,及配置

一。安裝部分

0.前奏:

很多文章分享為處理.bin檔案,但目前官方下載僅有.tar.rpm兩種,不適用!

Installation of the 64-bit JDK on Linux Platforms

This procedure installs the Java Development Kit (JDK) for 64-bit Linux, using an archive binary file (.tar.gz).

These instructions use the following file:

    jdk-7u<version>-linux-x64.tar.gz

1. Download the file. Before the file can be downloaded, you must accept the license agreement. The archive binary can be installed by anyone (not only root users), in any location that you can write to. However, only the root user can install the JDK into the system location.

2. Change directory

 to the location where you would like the JDK to be installed. Move the .tar.gz archive binary to the current directory.

3. Unpack the tarball and install the JDK.

    % tar zxvf jdk-7u<version>-linux-x64.tar.gz

The Java Development Kit files are installed in a directory called jdk1.7.0_<version>

 in the current directory.

4. Delete the .tar.gz file if you want to save disk space.

官方文件才是王道!

二。配置部分:

分析

ubuntu中的環境變數等引數儲存在指定檔案中,無法通過圖形化介面修改,通過終端向配置檔案中新增變數

各配置檔案意義

 /etc/environment:設定整個系統的環境,與登入使用者無關
     
 /etc/profile:系統的每個使用者設定環境資訊,當用戶第一次登入時,該檔案被執行並從/etc/profile.d目錄的配置檔案中搜集shell的設定
      
/etc/bash.bashrc:為每一個執行bash shell的使用者執行此檔案.當bash shell被開啟時,該檔案被讀取.
      ~/.bashrc: 該檔案包含專用於該登入使用者bash shell的bash資訊,當登入時以及每次開啟新的shell時該該檔案被讀取

各配置的生效時間

/etc/environment:重啟生效
/etc/profile:登出後登入生效
/etc/bash.bashrc:重新開啟bash shell後生效
~/.bahsrc:重新開啟bash shell後生效

檔案修改許可權

修改的檔案為readonly,無法修改,!強制命令(如:w!)也無法執行。需先進入root許可權,修改檔案許可權。

操作

1.修改許可權

sudo su

輸入密碼

chmod 777 檔名

2.在 /etc/environment和 /etc/profile和/etc/bash.bashrc中新增

1 vim/etc/profile
1 vim/etc/bash.bashrc  vim /etc/environment 關於vim:
插入模式
輸入文字
編輯模式
執行命令,也稱為正常模式。
命令模式
執行 冒號 命令

插入模式並不是預設的模式,您必須按下i來進入插入模式,在螢幕上輸入一些文字。按下<Esc>按鈕將從插入模式轉到編輯模式。該模式用於移動和操縱文字,有時以非常有趣的方式進行。 命令模式用於執行冒號命令,比如儲存,查詢/替換以及配置vim等。欲儲存文字,您只需要在正常模式下輸入:進入命令模式並輸入:w filename<Enter>.退出vim請執行冒號命令:q.總結如下:

vim (啟動vim)
i (進入插入模式)
<輸入文字>
<Esc> (回到編輯模式)
:w filename (儲存檔案為'filename')
:q (退出vim)
vim filename (開啟您剛才在vim中儲存的檔案)

請記住,最好的學習vim的方式是使用她.您可以通過內建的vim教程來學習vim的基本使用,只需要在終端中輸入vimtutor (有的系統中可能是vim-tutor).


在兩個檔案的末尾都加上下面一段

1 2 3 4 5 #set java environment exportJAVA_HOME=home/happy/java/jdk1.7.0_55 exportJRE_HOME=home/happy/java/jdk1.7.0_55/jre exportCLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH exportPATH=$JAVA_HOME/bin:$JRE_HOME/bin:$PATH 3.重啟(右上角happy按鈕,重啟),搞定
1 java –version 如下顯示對應結果 安裝JRE、JDK成功

參考連結:
1、在Ubuntu 10.10下安裝JDK配置Eclipse及Tomcat【轉載 + 訂正】   http://www.cnblogs.com/evasnowind/archive/2011/01/05/1926059.html
2、ubuntu安裝jdk全過程(僅供參考)  http://forum.ubuntu.org.cn/viewtopic.php?t=183803
3、java學習_jdk安裝  http://www.cnblogs.com/shaoguobao/archive/2011/07/16/2108015.html