Linux Ubuntu 20.04 LTS 解決無法輸入中文 輸入法問題

Gaowaly發表於2024-11-06

解除安裝 fcitx sogou 輸入法

# 徹底解除安裝sogou和fcitx
sudo apt purge sogoupinyin
sudo apt purge fcitx
sudo apt autoremove
sudo apt remove fcitx*
sudo apt purge fcitx*
sudo apt autoremove

# 刪除配置檔案
cd .config/
rm -rf sogoupinyin/
rm -rf ibus

安裝&配置 ibus-rime
# 安裝ibus
sudo apt install ibus ibus-rime

這裡需要先登出或重啟下系統,然後進入輸入法配置

[設定] - [區域與語言] - [輸入源] - [+]

選擇 中文(Rime)

然後刪掉其他不需要的輸入法

[管理已安裝的語言] - [鍵盤輸入法系統]

選擇ibus

重啟ibus
ibus restart

這裡先開個文字編輯器試下中文能不能輸入
只要能輸入就行,後續再最佳化配置檔案

# 最佳化配置檔案
cd .config/ibus/rime/
gedit default.custom.yaml

# 貼上以下配置並儲存
patch:
schema_list:
- schema: luna_pinyin_simp
menu:
page_size: 9
ascii_composer:
switch_key:
Shift_L: commit_code

(上述配置包括 僅簡體中文、候選詞9個、左shift切換中英文)

這裡也可以再重啟輸入法並開個文字測試下效果

ibus restart
gedit

最後剩下一個橫排候選詞

cd ~/.config/ibus/rime/build/
gedit ibus_rime.yaml

# 貼上以下程式碼並儲存
style:
horizontal: true

最後再重啟一次輸入法測試下效果就結束了

ibus restart
gedit

補充
注意:Ubuntu 20.04 LTS 使用ibus輸入法後會導致 WPS 啟動奇慢無比
解決方法

sudo apt install libcanberra-gtk-module
sudo apt install appmenu-gtk2-module

完美解決!秒開WPS
END
親測,效果確實比搜狗差一點,但解決了之前2個大麻煩,也不錯。之後有機會再研究如何增加詞庫


————————————————

貓頭虎技術團隊

原文連結:https://blog.csdn.net/qq_44866828/article/details/122472530

相關文章