Mac (Leopard) 環境構築 その9 Java、eclipseなど研究用ソフト

次のソフトウェアをインストールした。

#! /bin/sh
open -a ~/work/eclipse-europa/Eclipse.app $*
  • SoyLatte 1.0
    • http://landonf.bikemonkey.org/static/soylatte/
    • 研究用にどうしてもJava6が必要なので
    • AppleもJava6をMac OS X用にポーティングしているとのことなので、一時的な使用というわけで、「~/soft/soylatte16-i386-1.0」にインストール
    • eclipseで使用するために、登録するときに「Standard VM」ではなく、「MacOS X VM」の方を選ばなければいけないことに、ちょっとハマった
      • Preferences -> Java -> Installed JREs -> Add で出てくるウィンドウ中のJRE typeで「MacOS X VM」を選択
  • MacFUSE and sshfs
    • http://code.google.com/p/macfuse/
    • sshを使って遠隔マシンで操作をすることが多いので
    • sshfs.appはGUIアプリケーション。CUI版は「[INSTALL_DIR]/sshfs.app/Contents/Resources/sshfs-static」にある。
    • sshfsもTerminalから使いたかったので、~/bin以下に、例えば以下の内容の「mount_myetch」と「umount_myetch」を作成した。
$ cat mount_myetch                                                      [~/bin]
#! /bin/sh

/Applications/Utilities/sshfs.app/Contents/Resources/sshfs-static shin@192.168.9.129: /Users/shin/work/mount/myetch
$ cat umount_myetch                                                     [~/bin]
#! /bin/sh

umount /Users/shin/work/mount/myetch

こちらを参考にさせてもらった。