centos 7 安装和基本配置
Posted mr-o-o
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7 安装和基本配置相关的知识,希望对你有一定的参考价值。
U盘安装centos 7
还是官方文档最准确。
- 下载centos
https://docs.centos.org/en-US/centos/install-guide/downloading/ - 制作安装盘
https://docs.centos.org/en-US/centos/install-guide/Making_Media_USB_Windows/ - 引导安装
https://docs.centos.org/en-US/centos/install-guide/Boot_x86/#sect-installation-starting-x86
我安装过程中还有一个问题,
会提示更新microcode到某个版本,每个电脑可能不一样,好像是跟CPU相关的东西。
确保安装的时候电脑是可以联网的就好了,安装的时候回自动下载更新的。
----
到有图形化界面的时候,就没啥好说的了。
完成之后,首先配置一下网络吧。不然啥都干不了
https://blog.51cto.com/simonhu/1588971
查看系统版本
cat /etc/redhat-release
查看配置ip
- ifconfig --需要yum install net-tools 先
- ip addr
- vi etc/sysconfig/netword-scripts/ifcfg-xx
yum install net-tools
替换默认源
- 先安装wget,
yum install wget - 等会下载repo文件的时候:
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo - 默认的是国外的,一般比较慢,换成国内的好一点,这个是163的里面有详细的步骤:http://mirrors.163.com/.help/centos.html
安装vim体验一下国内源的速度
yum install vim安装SSH服务(服务器版本的一般都已经集成了装好了)
- 安装
yum install openssh-server - 启动
service sshd start 设置开机运行
chkconfig sshd on
至此 centos 7 安装和基本配置完毕
以上是关于centos 7 安装和基本配置的主要内容,如果未能解决你的问题,请参考以下文章