Evince 是一款流行的开源 PDF 阅读器,它提供了许多方便的功能,包括文档搜索。然而,最近在使用 Evince 时遇到一个常见的问题,那就是搜索框无法键入任何内容。
查看日志:
journalctl -xe | grep evince
报错如下:
evince[8749]: events queue growing too big, will start to drop.
网上找了很久,终于找到解决方案,只需要执行以下命令即可:
rm -r ~/.config/ibus
重启后又出现了无法搜索的问题,后来发现是ibus
输入法的问题。
解决方法:
卸载ibus
,安装fcitx
- 卸载ibus:
sudo apt-get remove ibus
- 安装fcitx:
sudo apt-get install fcitx
- 安装谷歌拼音:
sudo apt-get install fcitx-googlepinyin
- 安装搜狗拼音(可选):
sudo apt-get install fcitx-module-autoeng-ng
- 重启电脑