1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

日本語配列なのにUS配列として認識されるときに見る記事

Last updated at Posted at 2024-10-29

日本語配列のキーボード使ってて半角/全角押してるのに`が出てきていらついたときに見る記事

環境

  • ubuntu22.04

まずは確認

アプリから確認

設定 > キーボード > 入力ソースで、Mozcになっているか確認。
Mozcがインストールされていない場合は

zsh
sudo apt-get install -y ibus-mozc
sudo apt-get install -y mozc-utils-gui
reboot

を実行してインストールする。

image.png
最終的にこのようになっていれば良い。

ターミナルで確認

ターミナル上で

setxkbmap -query

を実行。
image.png
layout:usとあるのでキーボードのレイアウトがUS配列として設定されていることがわかる。

setxkbmap jp

を実行してみると
image.png
となる。
これで再起動してレイアウトが変更されていれば終わり。

setxkbmap jpしても再起動したらusになる場合

まずは

sudo dpkg-reconfigure keyboard-configuration

を実行してください。それで日本語のキーボードを選んであげてください。

それでもだめなら

もうね、わかんない。
わかんないからゴリ押して、起動時にsetxkbmap jpが実行されるようにする。

つぎのコマンドで設定ファイルを作って編集画面を開く。

mkdir -p ~/.config/autostart
nano ~/.config/autostart/setxkbmap.desktop

そしたらこれを書き込む。

setxkbmap.desktop
[Desktop Entry]
Type=Application
Exec=setxkbmap jp
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
Name=Set Japanese Keyboard Layout
Comment=Automatically set keyboard layout to JP on startup

これでもう大丈夫。再起動してsetxkbmap -queryしたらちゃんとjpって出ます!!!

追記

なんかMozc以外のプレーン日本語レイアウトも登録しないとうまく動かないっぽいです。お騒がせしました。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?