2017/07/25(火) [n年前の日記]
#4 [windows][ubuntu] なんとなく Bash on Ubuntu on Windows をインストール
なんとなく、Windows10 Creators Update x64上で、Bash on Ubuntu on Windows をインストールしてみたり。以下を参考にしつつ作業。
_Bash on Ubuntu on Windowsをインストールしてみよう! - Qiita
_Bash on Ubuntu on Windows環境構築メモ - Qiita
_Bash on Ubuntu on Windowsとは? そのインストールと使い方 - Build Insider
_Windows10 の "Bash on Ubuntu on Windows" で困ったこと - Qiita
_WSL その4 - BashでUbuntu Monoフォントを利用するには - kledgeb
_Bash on Ubuntu on Windows + VcXsrv + RubyMine でWindowsでも快適なRails開発環境を作ろう - Qiita
_Bash on Ubuntu on Windows から GUIアプリを起動 | Mono Works
_Bash on Ubuntu on Windowsをインストールしてみよう! - Qiita
_Bash on Ubuntu on Windows環境構築メモ - Qiita
_Bash on Ubuntu on Windowsとは? そのインストールと使い方 - Build Insider
_Windows10 の "Bash on Ubuntu on Windows" で困ったこと - Qiita
_WSL その4 - BashでUbuntu Monoフォントを利用するには - kledgeb
_Bash on Ubuntu on Windows + VcXsrv + RubyMine でWindowsでも快適なRails開発環境を作ろう - Qiita
_Bash on Ubuntu on Windows から GUIアプリを起動 | Mono Works
◎ 手順をメモ。 :
Windows10 Insider版を使っているなら Windowsストア経由でUbuntuをインストールできるらしいのだけど。
_Windows 10 Insider Build 16215以降向けにUbuntuがストアで配布開始 - PC Watch
自分が使ってるのは Windows10 Creators Update、バージョン 1703、Build 15063なので、ストア経由ではまだインストールできない。ということで、以前から提供されてる形でインストール。
リポジトリを日本のサーバに変更。
パッケージを更新。
バージョン確認。
_Windows 10 Insider Build 16215以降向けにUbuntuがストアで配布開始 - PC Watch
自分が使ってるのは Windows10 Creators Update、バージョン 1703、Build 15063なので、ストア経由ではまだインストールできない。ということで、以前から提供されてる形でインストール。
- Windowsの機能の有効化または無効化、を立ち上げて。
- Windows Subsystem for Linux (Beta) を有効化。OS再起動。
- 設定 → 更新とセキュリティ → 開発者向け → 開発者モード、に変更。
- DOS窓を起動して、bash を実行。インストールが始まる。
リポジトリを日本のサーバに変更。
sudo sed -i -e 's%http://.*.ubuntu.com%http://ftp.jaist.ac.jp/pub/Linux%g' /etc/apt/sources.list
パッケージを更新。
sudo apt update sudo apt upgrade
バージョン確認。
$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=16.04 DISTRIB_CODENAME=xenial DISTRIB_DESCRIPTION="Ubuntu 16.04.2 LTS"
◎ VcXsrv をインストール。 :
VcXsrv なるソフトを使えばGUIアプリも表示できるようになるらしい。
_VcXsrv Windows X Server download | SourceForge.net
vcxsrv-64.1.19.2.0.installer.exe をDLしてインストール。実行するとタスクトレイにアイコンが表示される。
bash上で以下を打つ。
_VcXsrv Windows X Server download | SourceForge.net
vcxsrv-64.1.19.2.0.installer.exe をDLしてインストール。実行するとタスクトレイにアイコンが表示される。
bash上で以下を打つ。
echo "export DISPLAY=localhost:0.0" >> ~/.bashrc source ~/.bashrc sudo apt install x11-apps xeyes &目玉が表示された。
◎ 使い道が思いつかない。 :
インストールはしてみたけれど、使い道が思いつかなくて。とりあえずアンインストール。
再インストールは以下でいいらしい。試してないけど。
lxrun /uninstall /full
再インストールは以下でいいらしい。試してないけど。
lxrun /install
[ ツッコむ ]
以上です。