(一)安装谷歌输入法可以按照如下链接:
http://blog.csdn.net/arackethis/article/details/42154029
问题的关键在于,笔者觉得没必要那么麻烦,直接:
1.
sudo apt-get install fcitx fcitx-config-gtk fcitx-sunpinyin fcitx-googlepinyin fcitx-module-cloudpinyin
如果奏效也是可以的, fcitx-googlepinyin就是要安装的输入法,当然也可以安装ibus的谷歌输入法。
2.
进入system setting的Language Support, 将键盘输入方式input method改成fcitx, 然后重启电脑, 进入系统后发现屏幕右上角出现了新的键盘图标,点击config,点击‘+’,搜索googlepinyin, 将我们安装的输入法选中添加,即可。
(二)软件更新源列表 source.list
RT, 在安装谷歌输入法后踩到坑了,有的帖子推荐删除原来的ibus和之前自己安装的fcitx。但是问题来了?
比如卸载了fcitx后system setting 没有了。system setting其实是Ubuntu的图形桌面,有的情况下是setting里的选项不完整了。这个是一个连锁反应,当直接运行:
sudo apt-get install ubuntu-desktop 时,报错如下
Package 'ubuntu-desktop' has no installation candidate, 或者是 can not locate package, package is not available要安装的package breakup, enable the "Universe" respository等问题 (关于要安装的package失败报错)
按照有些经验运行:
sudo apt-get update后问题依然存在,无法安装。
出现此错误的原因是默认的Ubuntu 14.04或者其他系列系统的更新软件源太旧了,不能定位到需要安装的包,此时需要重新更新source.list
方法如下:
1.可选:备份一下原始文件
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup2.
sudo gedit /etc/apt/sources.list将如下内容粘贴复制进去:
## 阿里巴巴的软件更新源,当然也可以选择其他(http://blog.csdn.net/wang_shuai_ww/article/details/46679081)
deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
3.
sudo apt-get update
然后正常进行package的安装或者更新
(三)修复或者重新安装 system setting/ ubuntu desktop
进行步骤(二)之后,运行以下命令:
sudo apt-get update
sudo apt-get install ubuntu-desktop
此命令立刻有效,无需重启
填坑愉快