Ubuntu下常用软件

1.  GlobalMenu(全局菜单)
    安装代码:
    ▪ sudo add-apt-repository ppa:globalmenu-team/ppa
    ▪ sudo apt-get update
    ▪ sudo apt-get install gnome-globalmenu

2.  Docky(仿Mac的Dock)
    ▪ sudo add-apt-repository ppa:docky-core/stable   
    ▪ sudo apt-get update   
    ▪ sudo apt-get install docky

3.  Emesene(MSN聊天)
    http://wiki.ubuntu.org.cn/index.php?title=Qref/Apps&variant=zh-cn#.E5.8D.B3.E6.97.B6.E9.80.9A.E8.AE.AF

4.  OpenFetion(移动飞信聊天)
    安装代码:
    ▪ deb http://ppa.launchpad.net/happyaron/ppa/ubuntu lucid main
    ▪ sudo apt-get update 
    ▪ sudo apt-get install openfetion

5.  腾讯QQ
    http://web3.qq.com

6.  iBus(输入法,升级自带的,并添加谷歌拼音)
    最新版iBus安装代码:
    ▪ sudo add-apt-repository ppa:shawn-p-huang/ppa
    ▪ sudo apt-get update
    ▪ sudo apt-get install ibus-gtk ibus-qt4 ibus-pinyin ibus-pinyin-db-open-phrase

    集成谷歌拼音:
    ▪ sudo apt-get install cmake build-essential opencc mercurial ibus
    ▪ hg clone http://code.google.com/p/libgooglepinyin.ibus-wrapper/ ibus-googlepinyin
    ▪ cd ibus-googlepinyin
    ▪ mkdir build; cd build
    ▪ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
    ▪ make
    ▪ sudo make install

7.  Chrome(网页浏览器)
    http://www.google.com/chrome?hl=zh-CN

8.  Firefox(网页浏览器)
    安装代码:
    ▪ sudo add-apt-repository ppa:Ubuntu-mozilla-security/ppa
    ▪ sudo apt-get update
    ▪ sudo apt-get install firefox

9.  ChmSee(chm文档浏览工具)
    http://wiki.ubuntu.org.cn/index.php?title=Qref/Apps&variant=zh-cn#.E6.96.87.E6.A1.A3.E9.98.85.E8.AF.BB

10. Ubuntu Tweak(Linux下的360)
    http://launchpad.net/ubuntu-tweak/0.5.x/0.5.14/+download/ubuntu-tweak_0.5.14-1~natty1_all.deb

11. VirtualBox(虚拟机软件)
    http://www.virtualbox.org/wiki/Linux_Downloads

12. FlashGet(下载工具)
    http://bbs.flashget.com/download/flashget-1.0.2-0_cn.noarch.deb

13. SMPlayer(播放器)
    ▪ sudo apt-get install smplayer

14. GIMP Image  Editor(图像编辑器)
    http://apt.ubuntu.com/p/gimp

15. 压缩/解压缩
    安装代码:

    ▪ sudo apt-get install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar uudeview mpack lha arj cabextract file-roller
    ubuntu下经常会出现使用归档管理器打开RAR文件时中文显示乱码,其实,解决办法非常简单,在终端中执行以下命令即可:
    ▪ sudo apt-get install p7zip-full
    ▪ sudo apt-get remove rar
    ▪ sudo apt-get install unrar
    这时,再用归档管理器打开RAR文件,应该就不会乱码了。

猜你喜欢

转载自senton.iteye.com/blog/1177814