参考サイト
- [Ubuntu] Eclipse install - Linux Tips Note
- https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/188380
リポジトリにあるのは若干古いバージョンだった(3.2.2)のでオフィシャルサイトからダウンロードしてインストール。といっても解凍するだけ。
解凍
$ tar xzvf eclipse-java-europa-winter-linux-gtk.tar.gz
「/opt」に移動
$ sudo mv eclipse/ /opt/eclipse
コマンドから起動するようにする
$ sudo touch /usr/bin/eclipse
以下のように編集。
#!/bin/sh export ECLIPSE_HOME="/opt/eclipse" $ECLIPSE_HOME/eclipse $*
$ sudo chmod +x /usr/bin/eclipse
起動すると、謎の警告ダイアログが出る
Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
Ubuntuのバグ?らしい(https://bugs.launchpad.net/ubuntu/+source/eclipse/+bug/188380)。Firefoxが関係しているとか。
ホームフォルダの「.mozilla」ディレクトリの下に「eclipse」ディレクトリを作ることで直った。
$ mkdir ~/.mozilla/eclipse