0
2

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 1 year has passed since last update.

AWS AmazonLinux 日本語化(locale設定)

Posted at

概要

  • Amazon Linuxの初期設定、日本語化についてまとめた

日本語化

  • localectlコマンドにて変更等を実施する

  • ロケールの確認

# localectl status
▼コマンド実行結果
------------------------------------
   System Locale: LANG=en_US.UTF-8
       VC Keymap: n/a
      X11 Layout: n/a
------------------------------------
  • 日本語化
// 変更可能なロケールの確認
localectl list-locales | grep -i jp

// 日本語に設定変更
localectl set-locale LANG=ja_JP.utf8

// 変更確認
localectl status
▼コマンド実行結果
------------------------------------
   System Locale: LANG=ja_JP.utf8
       VC Keymap: n/a
      X11 Layout: n/a
------------------------------------

// 設定の反映
source /etc/locale.conf

参考リンク

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?