LoginSignup
4
3

More than 3 years have passed since last update.

Ubuntu MATE 20.04でFcitx Configurationが起動しないときの対処方法

Posted at

概要

Ubuntu MATE 20.04をクリーンインストールした後,Fcitx Configurationを開こうとしたところ,これが正常に起動しなかった.これは,同OSの正式版リリース直後である2020年4月25日に確認されたことからバグかと考えられる.この対処法を示す.

結論

以下のコマンドで,fcitx-config-gtkをインストールする.

how_to_fix
sudo apt install -y fcitx-config-gtk 

環境

以下の環境で動作確認を行った.

environment
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

対処に至った経緯

GUIの設定画面が開かない

以下のウィンドウが表示され,OKボタンを押すと,テキストの設定ファイルが表示された.

informatiopn.png

表示されたメッセージは,以下のとおりである.

You're currently running Fcitx with GUI, but fcitx-configtool couldn't be found, the package name is usually fcitx-config-gtk, fcitx-config-gtk3 or fcitx-configtool. Now it will open config file with default text editor.

the packageを探す

the package name is usually fcitx-config-gtk, fcitx-config-gtk3 or fcitx-configtoolのパッケージに該当するものを,aptコマンドを用いて探した.この結果,fcitx-config-gtkがヒットした.

search_for_fcitx-config*
$ apt search fcitx-config
Sorting... Done
Full Text Search... Done
fcitx-config-common/focal,focal 0.4.10-3 all
  graphic Fcitx configuration tool - common files

fcitx-config-gtk/focal 0.4.10-3 amd64
  graphic Fcitx configuration tool

fcitx5-module-quickphrase-editor/focal 1.2.4-1build2 amd64
  Flexible Input Method Framework - Quick Phrase editor module

kde-config-fcitx/focal 0.5.5-2build1 amd64
  KDE configuration module for Fcitx

libfcitx-config4/focal,now 1:4.2.9.7-3 amd64 [installed,automatic]
  Flexible Input Method Framework - configuration support library

解決

以下のコマンドで,fcitx-config-gtkをインストールすると,正常に起動するようになった.

how_to_fix
sudo apt install -y fcitx-config-gtk 

最後に

Ubuntu MATE in Launchpadに,バグレポートをしておきました.もし,修正したほうが良い点があれば,ご教示ください.GUI Fcitx Configuration cannot run on Ubuntu MATE 20.04

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