Skip to content

Instantly share code, notes, and snippets.

@zhangskills
Created September 3, 2014 13:00
Show Gist options
  • Save zhangskills/864e9b0ee08c6fff03a7 to your computer and use it in GitHub Desktop.
Save zhangskills/864e9b0ee08c6fff03a7 to your computer and use it in GitHub Desktop.
ubuntu安装杂记
@zhangskills
Copy link
Author

安装sublime-text-3

1.sudo add-apt-repository ppa:webupd8team/sublime-text-3
2.sudo apt-get update
3.sudo apt-get install sublime-text-installer

http://jingyan.baidu.com/article/fa4125acb8569b28ac7092ea.html

@zhangskills
Copy link
Author

大概新手人都曾纠结过LinuxMint下的输入法配置问题。其实这个问题也挺容易的。下面我就以安装ppa源中的sogou输入法为例来为大家讲解:
安装搜狗输入法大概用如下命令就能解决了:

sudo add-apt-repository ppa:fcitx-team/nightly
sudo aptitude update

sudo aptitude install fcitx fcitx-sogoupinyin fcitx-config-gtk fcitx-frontend-all fcitx-module-cloudpinyin fcitx-ui-classic

以上安装软件的介绍如下:
1.fcitx:fcitx主程序
2.fcitx-sogoupinyin :fcitx的搜狗拼音词库。(你也可以换成其他类型的词库比如五笔、rime等等,具体可以终端输入aptitude search fcitx搜索。)
3.fcitx-config-gtk:fcitx的gtk的设置图形界面。
4.fcitx-frontend-all:fcitx在所有环境下的前端。(有qt、gtk2、gtk3下对应的包组成。)
5.fcitx-module-cloudpinyin:fcitx的云拼音模块。
6.fcitx-ui-classic:fcitx的经典UI显示模块。(此软件包不能被fcitx-ui-light或者fcitx-ui-qimpanel代替,应为该包默认包含着fcitx-module-x11,有了它才能在让fcitx在图形界面上显示出输入框。)

PS:KDE用户还可以安装fcitx的QT化组建来使fcitx风格能更加与KDE桌面环境统一:
sudo aptitude install fcitx-ui-qimpanel fcitx-module-kimpanel plasma-widget-kimpanel

关于fcitx的配置,很多人说用im-switch,其实Mint本身就自带了一个更好的输入法配置器,im-config:
依次点击:”Menu->首选项->输入法“打开im-config:

http://tieba.baidu.com/p/2811713743

@zhangskills
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment