16
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows Subsystem for Linux (WSL) でJava環境の導入する

Last updated at Posted at 2018-04-26

WSLのインストールは…

まだ入れてないって方は Windows Subsystem for Linuxをインストールしてみよう! などをご参考に。
いまはいろんなパッケージが導入できますがUbuntu入れました。

Java環境が入っているか確認する

次のコマンドで実行環境がインストールされているか確認します.

java -version

インストールされていないと次のようなメッセージが出力されます

The program 'java' can be found in the following packages:
 * default-jre
 * gcj-5-jre-headless
 * openjdk-8-jre-headless
 * gcj-4.8-jre-headless
 * gcj-4.9-jre-headless
 * openjdk-9-jre-headless
Try: sudo apt install <selected package>

パスが通っていない場合も同じように表示されます

Java環境のインストール

今回はopenjdkをインストールしてみます

sudo apt install openjdk-9-jre-headless

JAVA_HOMEの設定

JAVA_HOMEに設定できる対象を調べます

sudo update-alternatives --list java

8,9を入れた場合には次のように出力されます

/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
/usr/lib/jvm/java-9-openjdk-amd64/bin/java

exportコマンドを使って設定します.
上で出力されたパスの /bin/javaは不要です.

export JAVA_HOME=/usr/lib/jvm/java-9-openjdk-amd64

これでJavaの実行ができるようになります

16
17
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?