解决ubuntu18.04搜狗输入法问题

问题

起初,是一次升级系统以后选词框丢失。根据以往经验,删除配置文件。然而无效。因而卸载以后下载最新安装包尝试从新安装。 问题出现了,一个依赖问题没法解决:搜狗拼音依赖的fcitx-libs-qt这个包在18.04的源里面是不存在的。linux

替代品彷佛是libfcitx-qt0,我尝试修改deb中的控制文件,将fcitx-libs-qt替代换为libfcitx-qt0,并从新打包。这样能够安装,然而并没有卵用。去17.10的源下载fcitx-libs-qt,会有冲突,不能与libfcitx-qt0共存。c++

解决问题

通过各类折腾,最终解决了问题,记录以下。web

下载旧版

首先搜狗官方的最新版(sogoupinyin_2.2.0.0102_amd64.deb)是不能用的,至于为何不能用,未做深究。须要下载一个旧版本(sogoupinyin_2.1.0.0086_amd64.deb):ubuntu

http://cdn2.ime.sogou.com/dl/index/1491565850/sogoupinyin_2.1.0.0086_amd64.debpromise

将该deb包放置于一个空目录frontend

建立软件包目录

mkdir -p extract/DEBIAN

解包

dpkg-deb -x sogoupinyin_2.1.0.0086_amd64.deb extract/
dpkg-deb -e sogoupinyin_2.1.0.0086_amd64.deb extract/DEBIAN

修改control文件

用任意文本编辑器打开extract/DEBIAN/control 找到Depends行,删除fcitx-libs和fcitx-libs-qt,保存退出。编辑器

Package: sogoupinyin
Version: 2.1.0.0086
Architecture: amd64
Maintainer: Ubuntu Kylin Team <ubuntukylin-members@lists.launchpad.net>
Installed-Size: 53018
Depends: fcitx (>= 1:4.2.8.3-3~), fcitx-frontend-gtk2, fcitx-frontend-gtk3, fcitx-frontend-qt4, fcitx-module-kimpanel, im-config, libopencc2 | libopencc1, lsb-release, unzip, x11-utils, libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libidn11 (>= 1.13), libnotify4 (>= 0.7.0), libqt4-dbus (>= 4:4.8.0), libqt4-declarative (>= 4:4.8.0), libqt4-network (>= 4:4.8.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.6), libx11-6, zlib1g (>= 1:1.2.0)
Recommends: fcitx-frontend-qt5, fonts-droid-fallback | fonts-droid, dconf-gsettings-backend | gsettings-backend
Section: non-free/utils
Priority: optional
Homepage: http://pinyin.sogou.com/linux
Description: Sogou Pinyin Input Method
 Based on web search engine technology, Sogou Pinyin input method is
 the next-generation input method designed for Internet users. As it
 is backed with search engine technology, user input method can be
 extremely fast, and it is much more advanced than other input method
 engines in terms of the volume of the vocabulary database and its
 accuracy. Sogou input method is the most popular input methods in
 China, and Sogou promises it will always be free of charge.

打包

mkdir build
dpkg-deb -b extract/ build/

执行完毕build目录下会生成一个新的deb包ui

安装

先完全卸载掉搜狗输入法,并删除如下配置文件.net

.sogouinput
.config/fcitx
.config/sogou-qimpanel
.config/SogouPY
.config/SogouPY.users
.config/fcitx-qimpanel

而后安装咱们从新打包的输入法便可。重启以后,搜狗输入法恢复正常。code

转载于:https://my.oschina.net/inuxor/blog/1791548