安装Ubuntu 15.04后要做的事

来源:互联网 发布:魔力宝贝热砂数据 编辑:程序博客网 时间:2024/05/19 19:56

1.安装Vim

居然默认没有集成Vim神器,只能手动安装了。

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get install vim  

2.安装Chrome

到 https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 下载最新的安装文件。

然后

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get install libappindicator1 libindicator7  
  2. sudo dpkg -i google-chrome-stable_current_amd64.deb   
  3. sudo apt-get -f install  
这样以后就可以apt安装和更新chrome浏览器了。

3.安装搜狗输入法

vim /etc/apt/sources.list.d/ubuntukylin.list文件,加入ubuntu kylin的apt源

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. deb http://archive.ubuntukylin.com:10006/ubuntukylin trusty main  
然后

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get update  
  2. sudo apt-get install sogoupinyin  

这样就可以apt安装和更新搜狗输入法了。

4.安装WPS Office

目前MS一直不出Linux版的Office,只能凑合着用WPS了

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get install wps-office   

5.安装Oracle Java

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo add-apt-repository ppa:webupd8team/java    
  2. sudo apt-get update    
  3. sudo apt-get install oracle-java8-installer   

6.安装Sublime Text 3

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo add-apt-repository ppa:webupd8team/sublime-text-3    
  2. sudo apt-get update    
  3. sudo apt-get install sublime-text   

7.安装经典菜单指示器

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo add-apt-repository ppa:diesch/testing  
  2. sudo apt-get update  
  3. sudo apt-get install classicmenu-indicator  

8.安装系统指示器SysPeek

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo add-apt-repository ppa:nilarimogard/webupd8    
  2. sudo apt-get update    
  3. sudo apt-get install syspeek    

9.安装git和vpnc

git和vpn大家都懂的,程序员的好工具。

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get install vpnc git  

10.安装CMake和Qt Creator

CMake和Qt Creator是Linux下开发C++程序的神器,Ubuntu 15.04已经集成了最新版的Qt Creator (3.1.1)。

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. sudo apt-get install cmake qtcreator  




参考资料:http://blog.csdn.net/skykingf/article/details/45267517
0 0
原创粉丝点击