地址:http://www.zdfans.com/5928.html
php
這裏使用阿里雲的鏡像http://mirrors.aliyun.com/,也能夠選擇163的鏡像http://mirrors.163.com 具體地址:https://mirrors.aliyun.com/centos/7.6.1810/isos/x86_64/ 我選擇的是最小版本CentOS-7-x86_64-Minimal-1810.iso 安裝事後基本上沒什麼命令可用,好比vim、wget、ifconfig都沒有
html
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost ~]# ls
[root@localhost ~]# vi ifcfg-eno173783993
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.201
PREFIX=24
GATEWAY=192.168.1.1
NETMASK=255.255.255.0
DNS1=114.114.114.114
DNS2=8.8.8.8
複製代碼
[root@localhost ~]# systemctl restart network.service
複製代碼
會把咱們設置的DNS1和DNS2寫入/etc/resolv.conf文件,因此,若是沒在ifcfg-eno173783993中設置DNS, 那麼,能夠直接在/etc/resolv.conf中設置 nameserver 114.114.114.114 nameserver 8.8.8.8vim
[root@localhost ~]# yum -y update
複製代碼
你也能夠使用原始的yum源,我就沒有修改
centos
mirrors.aliyun.com/help/centos…bash
ifconfig、wget、vim
網絡
yum -y install net-tools wget vim
工具
[root@localhost ~]# yum -y install net-tools wget vim lrzsz
複製代碼
lrzsz 上傳文件 rz 下載文件 sz
阿里雲