概要
Ubuntu MATE 20.04をクリーンインストールした後,Fcitx Configurationを開こうとしたところ,これが正常に起動しなかった.これは,同OSの正式版リリース直後である2020年4月25日に確認されたことからバグかと考えられる.この対処法を示す.
結論
以下のコマンドで,fcitx-config-gtk
をインストールする.
sudo apt install -y fcitx-config-gtk
環境
以下の環境で動作確認を行った.
$ 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
ボタンを押すと,テキストの設定ファイルが表示された.
表示されたメッセージは,以下のとおりである.
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
がヒットした.
$ 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
をインストールすると,正常に起動するようになった.
sudo apt install -y fcitx-config-gtk
最後に
Ubuntu MATE in Launchpad
に,バグレポートをしておきました.もし,修正したほうが良い点があれば,ご教示ください.GUI Fcitx Configuration cannot run on Ubuntu MATE 20.04