1、导言
CentOS的最小系统仅包含内核和必要的工具,派不上多大用处,以后还得安装很多附加软件。为了方便以后的工作,还需要对系统做一些调整和补充。本文涉及的工作均应以root身份执行。
首先应配置网卡使其可以联通网络,Centos7的网络IP地址配置文件在 /etc/sysconfig/network-scripts 文件夹下:
ip addr #查看网络信息,例如本地网卡名称为 ens33
vi /etc/sysconfig/network-scripts/ifcfg-ens33 #编辑网卡配置文件
service network restart #重启网络服务
2、安装wget
wget是一个可以从http、ftp服务器上下载文件的程序,可用于下载特定的包或文件,非常有用。后面的一些操作也会用到它。运行命令:
yum install wget
3、安装常用命令
yum install lsof
yum install net-tools
yum install -y git
#报错,需要先安装:EPEL(Extra Packages for Enterprise Linux) repository
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
4、修改yum基本软件源仓库
CentOS默认的软件源仓库是在国外的官方站点上,速度很慢,所以要调整为国内的,这里调整为中科大的源,速度比较快,更新也挺及时。执行命令:
wget -O /etc/yum.repos.d/CentOS-Base.repo https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/centos?codeblock=3
会从中科大的Linux User Group网站上下载CentOS-Base.repo文件,替换原有的CentOS-Base.repo。
还有一些国内站点也提供类似的repo文件下载途径,比如163的镜像repo文件下载方法为:
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.163.com/ .help/CentOS7-Base-163.repo
阿里云的仓库文件下载方法:
wget -O/etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
5、为yum新增DVD软件仓库
1)为虚拟机的光驱设定挂载文件为CentOS的EverythingDVD;
2)用mkdir命令在/media目录下创建目录cdrom;
3)用mount命令以只读方式将光驱挂载到/media/cdrom目录:
mount -r /dev/sr0 /media/cdrom
4)修改yum的软件仓库,使能基于光盘的软件仓库:
用vi打开/etc/yum.repos.d/CentOS-Media.repo,将其中的enabled=0改为enabled=1,保存并退出。
6、安装EPEL
EPEL——Extra Packages forEnterprise Linux,企业版Linux 附加软件包。是一个由特别兴趣小组创建、维护并管理的,针对红帽企业版 Linux(RHEL)及其衍生发行版(比如 CentOS、Scientific Linux、Oracle Enterprise Linux)的一个高质量附加软件包项目。EPEL 的软件包通常不会与企业版 Linux 官方源中的软件包发生冲突,或者互相替换文件。EPEL 项目与 Fedora 基本一致,包含完整的构建系统、升级管理器、镜像管理器等等。国外的EPEL站点太慢,所以首先要制作国内的EPEL镜像仓库。这里选用中科大的EPEL源。执行命令:
wget http://mirrors.ustc.edu.cn/centos/7.2.1511/extras/x86_64/Packages/epel-release-7-5.noarch.rpm
rpm –Uvhepel-release-7-5.noarch.rpm
修改/etc/yum.repos.d/epel.repo:
[epel]
name=ExtraPackages for Enterprise Linux 7 - $basearch
baseurl=http://mirrors.ustc.edu.cn/epel/7/$basearch
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-7&arch=$basearch
failovermethod=priority
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
[epel-debuginfo]
name=ExtraPackages for Enterprise Linux 7 - $basearch - Debug
baseurl=http://mirrors.ustc.edu.cn/epel/7/$basearch/debug
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-debug-7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1
[epel-source]
name=ExtraPackages for Enterprise Linux 7 - $basearch - Source
baseurl=http://mirrors.ustc.edu.cn/epel/7/SRPMS
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-source-7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1
修改/etc/yum.repos.d/epel-testing.repo:
[epel-testing]
name=ExtraPackages for Enterprise Linux 7 - Testing - $basearch
baseurl=http://mirrors.ustc.edu.cn/epel/testing/7/$basearch
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=testing-epel7&arch=$basearch
failovermethod=priority
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
[epel-testing-debuginfo]
name=ExtraPackages for Enterprise Linux 7 - Testing - $basearch - Debug
baseurl=http://mirrors.ustc.edu.cn/epel/testing/7/$basearch/debug
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=testing-debug-epel7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1
[epel-testing-source]
name=ExtraPackages for Enterprise Linux 7 - Testing - $basearch - Source
baseurl=http://mirrors.ustc.edu.cn/epel/testing/7/SRPMS
#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=testing-source-epel7&arch=$basearch
failovermethod=priority
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
gpgcheck=1
亦可从阿里云直接下载epel的repo文件:
wget -O /etc/yum.repos.d/epel.repohttp://mirrors.aliyun.com/repo/epel-7.repo
随后执行以下命令重构yum软件仓库的cache:
yum clean all
yum makecache
执行命令:
yum install epel-release
7、调整yum仓库的优先级
目的:使yum首先搜索DVD仓库,然后再搜索其他仓库。步骤如下:
1)安装priority插件:
yum install yum-plugin-priorities
2)修改CentOS-Media.repo文件,在文件末尾添加一行:priority=1
3)修改CentOS-Base.repo文件,在每一节的末尾添加一行:priority=1
8、重构yum缓存
yum clean all
yum makecache
9、安装VMware-Tools
若是在VMware虚拟机中安装CentOS,则还需要安装相应版本的VMware-Tools,以启用客户机与宿主机之间的数据交换(文件共享、拖-放操作等),在GUI环境下,只有安装了VMware-Tools,虚拟机的显示区域才能扩展到整个窗口,并且随VMware Workstation的窗口变化而调整大小,否则只能使用窗口的部分区域和固定的显示分辨率。安装vmware-tools之前首先要安装perl解释器、gcc编译器、make工具以及内核相关文件,需要执行以下命令:
yum install perl gcc makekernel-headers kernel-devel
完成基本工具安装之后,在VMwareWorkstation的“虚拟机”菜单上选择“安装VMware-Tools”,稍候,VMware会将工具光盘镜像挂载到CentOS中。随后将光盘中的文件VMware-Tools*.tar.gz复制到用户本地目录,本例是“VMwareTools-10.0.5-3228253.tar.gz”。然后将这个压缩文件解压缩:
tar -xzfVMwareTools-10.0.5-3228253.tar.gz
这时会得到一个新的目录vmware-tools-distrib,进入该目录,并执行命令:
./vmware-install.pl
在接下来的交互中,全部使用默认选项即可完成vmware-tools的安装。完成安装后执行命令:vmware-user
然后重启系统,就会发现VMware-Tools已成功安装,桌面扩展到了窗口的全部区域。