|
|
debian で、Java 2 Runtime Environment(J2RE)を使いたかったので、Javaをインストールすることにします (目的は、東芝RDからPCへのダビング
for RDService」のため)。debian の場合は、GPLライセンスの関係で、本家パッケージにJAVAが含まれていないようなので、apt-line
に以下の行を加えて、apt-get update を実行しておく。
# vi /etc/apt/sources.list
deb http://ftp.jp.debian.org/debian/ stable main contrib
deb-src http://ftp.jp.debian.org/debian/ stable main contrib
# apt-get update |
apt-get で java-package をインストールする。その前にシミュレーションでなにがインストールされるか予め確認しておく。
# apt-get -s install java-package
Inst debconf-utils (1.4.30.13 Debian:3.1r2/stable)
Inst html2text (1.3.2a-2 Debian:3.1r2/stable)
Inst gettext (0.14.4-2 Debian:3.1r2/stable)
Inst intltool-debian (0.30+20040213 Debian:3.1r2/stable)
Inst po-debconf (0.8.23 Debian:3.1r2/stable)
Inst debhelper (4.2.32 Debian:3.1r2/stable)
Inst fakeroot (1.2.10 Debian:3.1r2/stable)
Inst java-package (0.24 Debian:3.1r2/stable)
Conf debconf-utils (1.4.30.13 Debian:3.1r2/stable)
Conf html2text (1.3.2a-2 Debian:3.1r2/stable)
Conf gettext (0.14.4-2 Debian:3.1r2/stable)
Conf intltool-debian (0.30+20040213 Debian:3.1r2/stable)
Conf po-debconf (0.8.23 Debian:3.1r2/stable)
Conf debhelper (4.2.32 Debian:3.1r2/stable)
Conf fakeroot (1.2.10 Debian:3.1r2/stable)
Conf java-package (0.24 Debian:3.1r2/stable) |
インストールを実行する。特に、何も聞かれずにインストールは完了。
# apt-get install java-package |
次に、Sun
のサイトにある「J2SE JRE のダウンロード 」から、j2re-1_4_2_11-linux-i586.bin をダウンロードしてくる。ダウンロードしてきたら、一般ユーザに戻り、以下のコマンドを実行する。何度か質問されるので以下の通りに実行していく。途中、ライセンス契約に同意するか否かの旨の文書が表示される。
# su - kororo
$ fakeroot make-jpkg j2re-1_4_2_11-linux-i586.bin
Creating temporary directory: /tmp/make-jpkg.XXXXUCcUZ5
Loading plugins: blackdown-j2re.sh blackdown-j2sdk.sh common.sh ibm-j2re.sh
ibm-j2sdk.sh j2re.sh j2sdk.sh j2se.sh sun-j2re.sh sun-j2sdk.sh
Detected product:
Java(TM) Runtime Environment (J2RE)
Standard Edition, Version 1.4.2+11
Sun Microsystems(TM), Inc.
Is this correct [Y/n]:y
Full name [root]:空ENTER
Email [root@kororo.jp]:空ENTER
In the next step, the binary file will be extracted. Probably a
license agreement will be displayed. Please read this agreement
carefully. If you do not agree to the displayed license terms, the
package will not be built.
Press [Return] to continue:空ENTER
Do you agree to the above license terms? [yes or no] yes
|
ここまで終えると、カレントディレクトリに、sun-j2re1.4_1.4.2+11_i386.deb ができあがっているので、root でインストールを実行する。最後に、JAVAのバージョンも確認しておく。以上で、インストールは完了。
$ sudo su
# dpkg -i sun-j2re1.4_1.4.2+11_i386.deb
# java -version
java version "1.4.2_11"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_11-b06)
Java HotSpot(TM) Client VM (build 1.4.2_11-b06, mixed mode) |
|