JDK用の.binファイルをダウンロードし、インストールしようとしています。私はこれらのコマンドを使用しました:
chmod +x jdk-6u23-linux-i586.bin
Sudo ./jdk-6u23-linux-i586.bin
そして、この出力を得ました:
Sudo: ./jdk-6u23-linux-i586.bin: command not found
ご協力いただきありがとうございますが、私は自分の問題を解決しました。
Ubuntuをインストールし、OpenJDKをインストールしたとき。 Sun JDKをインストールしようとしてエラーになりました。
OpenJDKをアンインストールし、マシンを再起動して、上記のファイルを抽出することで問題を解決しました。これは正常に抽出され、NetBeansはJDKパスを簡単に見つけました。
現在、NetBeansでのJava開発を楽しんでいます。
Netbeansをインストールするには、単に netbeans パッケージをインストールできます。これにより、Javaを含むNetbeansが必要とするすべてがインストールされます。
Sudo apt-get install netbeans
NetbeansをインストールせずにJavaをインストールする
Javaの専用バージョンが必要な場合は、次のことを行う必要があります。
これらのパッケージをインストールするには、アプリケーションメニューから利用できるソフトウェアセンターを使用します。
NetbeansはUbuntuソフトウェアセンターから入手できます。別のバージョンを使用する強い理由がない限り、そこからインストールする必要があります。
将来、私が書いたこれらの2つのスクリプトを使用します:D ...
Netbeansの前のJava ...
#!/bin/sh
#Delete the line below if you only want the "open" JDK & JRE
Sudo apt-get install openjdk-7-jdk openjdk-7-jre;
#Makes the /usr/lib/jvm in case...
Sudo mkdir -p /usr/lib/jvm
#Clean out /tmp...
Sudo rm -rf /tmp/*
cd /tmp
#Update this line to reflect newer versions of JDK...
wget http://download.Oracle.com/otn-pub/Java/jdk/7u1-b08/jdk-7u1-linux-i586.tar.gz;
tar -xvf ./*gz;
#Move it to where it can be found...
Sudo mv /tmp/jdk1.7.* /usr/lib/jvm/;
#Add the new Java to the bin
Sudo update-alternatives --install /usr/bin/Java java /usr/lib/jvm/jdk1.7.0_01/jre/bin/Java 3;
#User chooses
Sudo update-alternatives --config Java;
exit 0;
Netbeans ...
# @author Yucca Nel
# Update as needed for newer Netbeans releases :D
#!/bin/sh
#Clean out /tmp...
Sudo rm -rf /tmp/*;
cd /tmp;
#Update this line to reflect newer versions of Netbeans or replace 'javase with 'javaee' or add jee manually via
#Netbeans 'plugins as needed.
wget http://download.netbeans.org/netbeans/7.0.1/final/bundles/netbeans-7.0.1-ml-javase-linux.sh;
sh /tmp/*sh;
#Add Netbeans launcher to your PATH. Doing so allows you to run 'netbeans' command from the terminal
Sudo ln -s ~/netbeans-7.0.1/bin/netbeans /usr/local/bin/;
exit 0;