Centos7.X 新安装 - 系统基础配置

Posted willamwang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7.X 新安装 - 系统基础配置相关的知识,希望对你有一定的参考价值。

普通Linux分区方式:

/根分区 Linux系统必须要有的,相当于 Windows的C盘,系统程序相关的。
/boot分区 存放内核相关程序 是可选的 5 6给200M,7给256M(工作中1-2G)
swap分区 虚拟分区 作用内存不够的时候 系统就会把swap当做内存用。
防止因为内存不够死机。物理内存在8G以上,一般就给8G(可以给1.5倍)。
物理内存小于8G,就按1.5倍内存来给,例如:2G内给3G swap大小。
内存不够,swap分区来凑。
 
 
配置yum环境(aliyun、epel)
yum -y install wget
cd /etc/yum.repos.d/ && mv CentOS-Base.repo CentOS-Base.repo.bak
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
 
下载常用软件(生成本地缓存(install搜索)、补全、wget、vim、上传下载)
 
#CentOS6和CentOS7都要安装的企业运维常用基础工具包
yum install tree nmap dos2unix lrzsz nc lsof wget tcpdump htop iftop iotop sysstat nethogs traceroute vim lsof -y
 
#CentOS7要安装的企业运维常用基础工具包
yum install psmisc net-tools bash-completion vim-enhanced -y
yum makecache fast ##更新yum
yum -y update ##把补丁更新到最新

以上是关于Centos7.X 新安装 - 系统基础配置的主要内容,如果未能解决你的问题,请参考以下文章

小白零基础入门系列-VMWare安装CentOS7.x

新安装的ubuntu18.04系统无法用xshell远程连接问题

新安装的Centos 7系统怎么将网卡名称改为eth0

新安装的Centos 7系统怎么将网卡名称改为eth0

centos7 新安装基础配置

在新安装的centos系统中,yum命令,wget,ifconfig都无法使用,怎么解决