4
1

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 の Ubuntu 18.04 LTS で俗に言う「今さら聞けない・・・」を調べやすくしてみる

Last updated at Posted at 2019-03-05

Windows Subsystem for Linux (WSL) をちょこっとした調べ物用途で使うようにしてみましょうというお話。man を Windows 10 上でこっそり開いて難を切り抜けましょう:relaxed:

Windows 10 Version 1809 で確認。WSL をインストールして立ち上げるまでについては、いっぱい記事が出てるようなので割愛です。親切な記事がいっぱいありますね。
スクリーンショット 2019-03-05 10.46.59.png

1. Ubuntu Japanese Team のレポジトリを追加して、日本語関連のモジュールを落としやすくする

Ubuntuの日本語環境

wget -q https://www.ubuntulinux.jp/ubuntu-ja-archive-keyring.gpg -O- | sudo apt-key add -
wget -q https://www.ubuntulinux.jp/ubuntu-jp-ppa-keyring.gpg -O- | sudo apt-key add -
sudo wget https://www.ubuntulinux.jp/sources.list.d/bionic.list -O /etc/apt/sources.list.d/ubuntu-ja.list
sudo apt update

2. 日本語のパッケージを入れる

sudo apt-get install language-pack-ja-base language-pack-ja

3. ロケールを変更する

sudo update-locale LANG=ja_JP.UTF-8 LANGUAGE="ja_JP:ja"
source /etc/default/locale

4. man の日本語ページを入れる

sudo apt-get install manpages-ja manpages-ja-dev

5. 結果がどうなったか確認してみる

a: nano を立ち上げてみる (終了は [Ctrl] + [x])

nano

下部のメニューが日本語になってますね:clap_tone1:
スクリーンショット 2019-03-05 10.28.54.png

b: man を開く

man cp

「今さら聞けない・・・」がこれでちょっとは解消されるかも。
スクリーンショット 2019-03-05 10.40.21.png

4
1
0

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
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?