Lubuntu 12.10 に NetBeans 7.3 をインストールする

JRE をインストールします。

$ sudo apt-get install openjdk-7-jre-headless

http://netbeans.org/downloads/ から NetBeans をダウンロードします。

$ sh netbeans-7.3-php-linux.sh 
インストーラを構成しています...
システムでJVMを検索しています...
インストール・データを抽出しています...
インストーラ・ウィザードを実行中...
UIを初期化できません
ヘッドレス・モードでの実行

Exception: java.awt.HeadlessException thrown from the UncaughtExceptionHandler in thread "main"
$ LANG=C sh netbeans-7.3-php-linux.sh 
Configuring the installer...
Searching for JVM on the system...
Extracting installation data...
Running the installer wizard...
Can`t initialize UI
Running in headless mode

Exception: java.awt.HeadlessException thrown from the UncaughtExceptionHandler in thread "main"

インストーラがうまく起動できません。

$ sudo apt-get remove openjdk-7-jre-headless
$ sudo apt-get install openjdk-7-jre
$ sh netbeans-7.3-php-linux.sh 

これで、インストーラが起動しました。

ということで、openjdk-7-jre-headless では動作しないということでした。