启用网卡
[root@minilinux ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 HWADDR=00:0C:29:D2:95:30 TYPE=Ethernet UUID=89e1f0b8-9e25-4658-bb39-50a66b820051 ONBOOT=no(将no改为yes) NM_CONTROLLED=yes BOOTPROTO=dhcp
退出保存
安装中文输入法
yuminstall"@ChineseSupport"
安装完毕后,回到桌面system->preferences->inputmethod
如果没有,注销后重新登录
安装字体
yumgroupinstall-y"Font"
如果没装,会出现终端字体显示不正常的情况
安装文本编辑器
yuminstall-yemacs
安装基本开发软件(如:gccmake等)
yumgroupinstall-y"DevelopmentTools"
安装图像化界面
yum-ygroupinstall“XWindowSystem”
然后
yum-ygroupinstall“Desktop”
startx启动图像化界面
安装chrome浏览器
下面介绍一下快速安装chrome的方法
vim/etc/yum.repos.d/CentOS-Base.repo
根据你的系统增加一个节点
32-bit系统
[google]
name=Google-i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
64-bit系统
[google64]
name=Google-x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
安装稳定版本:sudoyuminstallgoogle-chrome-stable
安装测试版本:sudoyuminstallgoogle-chrome-beta
安装不稳定版本:sudoyuminstallgoogle-chrome-beta
OK!
测试chrome浏览器,点击系统左上角的“应用程序”选项,点击“internet”选项,选择chrome浏览器
安装过程中出现如下错误:
Error:Package:google-chrome-beta-30.0.1599.22-1.x86_64(google64)
Requires:libstdc++.so.6(GLIBCXX_3.4.15)(64bit)
Youcouldtryusing--skip-brokentoworkaroundtheproblem
Youcouldtryrunning:rpm-Va--nofiles--nodigest
原因:这是chrome在Centos上的一个bug。
解决方法:
yuminstallhttp://people.centos.org/hughesjr/chromium/6/x86_64/RPMS/chromium-28.0.1500.52-207119.x86_64.rpm
安装完后,会出现不能以root运行该浏览器
解决方法:
找到chromium图标,右键属性,
在命令后加入/opt/chromium/chrome-wrapper%U-user-data-dir(红色粗体部分)
添加epel源
wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -ivh epel-release-6-8.noarch.rpm
导入key:
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
epel安装完之后只是在/etc/yum.repos.d/生成了两个文件,一个是epel.repo,一个是epel-testing.repo
[root@localhost ~]# ls /etc/yum.repos.d/
CentOS-Base.repo CentOS-Media.repo epel.repo
CentOS-Debuginfo.repo CentOS-Vault.repo epel-testing.repo