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

【備忘録】Ubuntuで日本語入力を導入したときのメモ

0
Posted at

目的

OSをWindowsからUbuntuに変更したときに日本語入力設定で困ったので、再設定する時の備忘録としてまとめます。

環境

  • OS:Ubuntu 24.04.3 LTS

手順

1) Mozcのインストール

sudo apt update
sudo apt install ibus-mozc
ibus restart

2) 入力ソースの追加

  1. 設定 → キーボード → +入力ソースの追加
  2. 日本語 (Mozc)を追加

3) 入力切り替え方法

  • 右上のバーから変更
  • Super (Windowsキー) + Spaceで切り替えできる※半角/全角キーでは切り替えできない?

4) 任意:切り替え後のデフォルト入力を「ひらがな」にする

日本語切り替え後の入力モードが直接入力になっていたため、切り替え後のデフォルト入力モードをひらがなに変更。

手順

~/.config/mozc/ibus_config.textproto を編集して active_on_launch を True にする

設定ファイル作成(なければ)

mkdir -p ~/.config/mozc
nano ~/.config/mozc/ibus_config.textproto

ファイル内に追加(なければ追記)

active_on_launch: True

変更を反映

ibus write-cache
ibus restart
0
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
0
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?