1
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 3 years have passed since last update.

Centos8 に日本語入力をできるようにする方法

Posted at

#背景

Centos8にて日本語入力ができませんでした。入力しても文字が反映されません。

# echo $LANG

en_US.UTF-8

デフォルトでは英語設定となっています。

#解決方法

日本語のパッケージをインストールした後、日本語入力をできるようにします。

# dnf -y install langpacks-ja

# localectl set-locale LANG=ja_JP.UTF-8

# source /etc/locale.conf

# echo $LANG

ja_JP.UTF-8

これで日本語に設定ができ、入力ができるようになりました。

#参考

参考にさせていただきました。ありがとうございます。

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