1. 系统安装
- 语言—中文
2. 磁盘分区
根据实际情况分区,/boot分区,swap分区,/分区必须要有,其他根据实际情况自行定制。
1.其中/boot分区为标准分区,其他分区为LVM分区。LVM分区便于扩展磁盘空间。
2.swap分区一般为内存两倍,/boot分区一般500m-1G
3.可选分区
/usr(存储系统应用软件安装信息,软件多的话,给多点空间)
/var(存储系统日志信息,系统运行久会有很多日志,给大点)
- 更改主机名,看我另外一篇文章
https://blog.csdn.net/u014270566/article/details/104345151 - 配置Linux静态IP,看我另外一篇文章
https://editor.csdn.net/md/?articleId=105499163 - 关闭selinux,看我另外一篇文章
https://blog.csdn.net/u014270566/article/details/105501131
6.关闭防火墙配置。centos6支持iptables,centos7支持firewall和iptables,但是centos7默认使用firewall,如果要使用iptables,需要自己安装iptables。
https://blog.csdn.net/u014270566/article/details/104366578
7.配置本地yum源(或者直接使用外网yum源),参考我的另外一篇文章
https://blog.csdn.net/u014270566/article/details/105497162
8.关闭NetworkManager服务(我们经常使用network服务,防止两个服务冲突)
systemctl stop NetworkManager
systemctl disbale NetworkManager
9.禁止内核升级(linux系统如果升级内核,会造成不可预估的问题,因此有必要禁止自动升级内核)
vi /etc/yum.conf
添加如下内容
exclude=kernel*
exclude=centos-release*
- 安装系统基础软件
yum groupinstall "Compatibility Libraries" "Console Internet Tools" "Development Tools" "Security Tools" "System Administration Tools" -y
yum install -y vim lrzsz telnet curl net-tools tree bash-completion
11.时间同步
yum install ntpdate -y
ntpdate time1.aliyun.com #更新时间
crontab -e
编辑内容如下(如需定时同步则做如下操作):
*/10 * * * * /usr/sbin/ntpdate time1.aliyun.com >> /dev/null 2>&1
扩展知识:
查询可以安装的软件:
yum list
查询可安装的软件组:
yum gouplist
安装软件包组:
yum groupinstall "包组名称"