本文参考搜狗输入法官方教程,并针对ubuntu22.04做了一些调整
https://pinyin.sogou.com/linux/help.php
1.安装fcitx
# 查看fcitx版本
apt info fcitx | grep Version
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
Version: 1:4.2.9.8-5
# 安装fcitx
sudo apt install -y fcitx
2.设置系统默认键盘为fcitx
- 打开 系统设置——区域和语言——管理已安装的语言——在“语言”tab下——点击“添加或删除语言”
- 弹出“已安装语言”窗口,勾选中文(简体),点击应用
- 回到“语言支持”窗口,在键盘输入法系统中,选择“fcitx”
3.安装输入法依赖
sudo apt install -y libqt5qml5 libqt5quick5 libqt5quickwidgets5 qml-module-qtquick2
sudo apt install -y libgsettings-qt1
4.安装搜狗输入法
wget https://ime-sec.gtimg.com/202408061101/750651a57f1e37c464f0d3796cce6e1a/pc/dl/gzindex/1680521603/sogoupinyin_4.2.1.145_amd64.deb
sudo apt install ./sogoupinyin_4.2.1.145_amd64.deb
5.关闭Wayland
在ubuntu22.04中,必须关闭WaylandEnable,否则会出现冲突
# 在/etc/gdm3/custom.conf文件内,取消注释WaylandEnable
cat /etc/gdm3/custom.conf | grep WaylandEnable
WaylandEnable=false
标签:搜狗,输入法,WaylandEnable,ubuntu22.04,apt,fcitx,安装
From: https://www.cnblogs.com/amsilence/p/18344774