歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu上安裝NetBeans提示找不到jdk的解決辦法

Ubuntu上安裝NetBeans提示找不到jdk的解決辦法

日期:2017/2/28 16:15:58   编辑:Linux教程

改變文件權限使用命令:chmod 777 filename
然後才可以使用輸入:./xxx.sh 執行安裝操作

www.linuxidc.com@linuxidc-desktop:/$ cd home/zyx/Downloads/
www.linuxidc.com@linuxidc-desktop:~/Downloads$ ls
jdk-6u25-nb-7_0-linux-ml.sh netbeans-7.0-ml-cpp-linux.sh
www.linuxidc.com@linuxidc-desktop:~/Downloads$ chmod 777 jdk-6u25-nb-7_0-linux-ml.sh

輸入:./jdk-6u25-nb-7_0-linux-ml.sh 執行安裝操作

www.linuxidc.com@linuxidc-desktop:~/Downloads$ ./jdk-6u25-nb-7_0-linux-ml.sh
Configuring the installer...
Searching for JVM on the system...
Preparing bundled JVM ...
Extracting installation data...
Running the installer wizard...

此處跳出jdk-6u25-nb-7_0-linux安裝向導窗口。安裝步驟同xp系統雷同

www.linuxidc.com@linuxidc-desktop:~/Downloads$ ls

jdk-6u25-nb-7_0-linux-ml.sh netbeans-7.0-ml-cpp-linux.sh
www.linuxidc.com@linuxidc-desktop:~/Downloads$ chmod 777 netbeans-7.0-ml-cpp-linux.sh
www.linuxidc.com@linuxidc-desktop:~/Downloads$ ./netbeans-7.0-ml-cpp-linux.sh
Configuring the installer...
Searching for JVM on the system...
Java SE Development Kit (JDK) was not found on this computer

此時跳出錯誤!!!

JDK 6 is required for installing the NetBeans IDE. Make sure that the JDK is properly installed and run installer again.
You can specify valid JDK location using --javahome installer argument.

To download the JDK, visit http://java.sun.com/javase/downloads
You can specify valid JDK location using --javahome installer argument.

靈感來源於錯誤描述:

1.未找到JDK
Java SE Development Kit (JDK) was not found on this computer
2.可指定--javahome installer argument路徑來解決
You can specify valid JDK location using --javahome installer argument.

解決辦法如下:
執行命令:sh netbeans-7.0-ml-cpp-linux.sh --javahome /home/zyx/jdk1.6.0_25/jre/

www.linuxidc.com@linuxidc-desktop:~/Downloads$ sh netbeans-7.0-ml-cpp-linux.sh --javahome /home/zyx/jdk1.6.0_25/jre/

Configuring the installer...
Searching for JVM on the system...
Extracting installation data...
Running the installer wizard...

此處跳出netbeans-7.0-ml-cpp-linux安裝向導窗口。安裝步驟同xp系統雷同
www.linuxidc.com@linuxidc-desktop:~/Downloads$

Copyright © Linux教程網 All Rights Reserved