红联Linux门户
Linux帮助

ubuntu安装完成后的工作

发布时间:2016-01-18 09:41:47来源:linux网站作者:Raichen

以安装 ubuntu 15.10 为例。


1.备份并更改源

cd /etc/apt
sudo cp source.list source.list.bak
sudo vi source.list

删除所有内容并增加其他源(用vi删除所有内容,命令行下gg移动光标至文件头,dG删除光标后所有内容)

阿里云 ubuntu 15 源

deb http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse

其他源:http://wiki.ubuntu.org.cn/%E6%BA%90%E5%88%97%E8%A1%A8

更新源

sudo apt-get update


2.安装vim

sudo apt-get remove vim-common
sudo apt-get install vim


3.修改时间系统,防止双系统情况下win时间错误

sudo vim /etc/default/rcS  

将UTC=yes改为UTC=no


4.卸载不常用自带软件

sudo apt-get  -y remove libreoffice-common 

sudo apt-get -y remove thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku  landscape-client-ui-install 

sudo apt-get -y remove onboard deja-dup 


5.安装搜狗输入法

官网下载,双击安装,安装后注销登录

http://pinyin.sogou.com/linux/


6.安装chromium

chrome只能在官网下载安装,chromium在软件中心安装


7.安装JDK

装eclipse C++,开发JAVA都需要JDK

可以在/usr/lib下mkdir jvm,将下载的JDK解压到此目录

在/etc/profile或 ~/.bashrc中设置环境变量

/etc/profile的设置方法对所有登录的用户都有效,~/.bashrc只对当前用户有效

上面两个都是配置文件,开机后,系统会先读取/etc/profile,再读~/.bashrc。不同的用户~/.bashrc文件可以有不同的设置,而/etc/profile则是共用一个,只有root才能修改。~/.bashrc对/etc/profile有追加覆盖的效果。

export JAVA_HOME=/usr/lib/jvm/jdk1.……
export CLASSPATH=.:$JAVA_HOME/lib:$JRE_HOME/lib:$CLASSPATH  
export PATH=$JAVA_HOME/bin:$JRE_HOME/bin:$JAVA_HOME:$PATH

让配置文件生效

source /ect/profile
source ~/ .bashrc

eclipse c++ 解压后直接执行 ./eclipse即可


8.安装系统指示器SysPeek

sudo add-apt-repository ppa:nilarimogard/webupd8   
sudo apt-get update   
sudo apt-get install syspeek 


9.安装unrar

sudo apt-get install unrar 
unrar x test.rar 


安装完最小化RHEL/CentOS 7后需要做的30件事情(一):http://www.linuxdiyf.com/linux/11771.html

安装完最小化RHEL/CentOS 7后需要做的30件事情(二):http://www.linuxdiyf.com/linux/11801.html

安装完最小化RHEL/CentOS 7后需要做的30件事情(三):http://www.linuxdiyf.com/linux/11894.html

安装完最小化RHEL/CentOS 7后需要做的30件事情(四):http://www.linuxdiyf.com/linux/11895.html

安装完最小化RHEL/CentOS 7后需要做的30件事情(五):http://www.linuxdiyf.com/linux/11897.html

安装完最小化RHEL/CentOS 7后需要做的30件事情(六):http://www.linuxdiyf.com/linux/11910.html