https://www.cnblogs.com/ftl1012/p/ping.html
- 如果安装仓库到哪儿安装?
阿里云镜像网址:https://opsx.alibaba.com/mirror
#############################################################################################
# File Name: sys_info.sh
# Author: Finley
# mail: 2206952220@qq.com
# Create Time: Wed 21 Aug 2019 02:38:03 PM CST
#====================================================================================
#!/bin/bash
#打印当前系统的系统版本,内核,虚拟平台,主机名,架构,内网IP,外网IP
System=$( hostnamectl | grep System |awk 'BEGIN{FS=":"}{print $2}' )
Kernel=$( hostnamectl | grep Kernel |awk 'BEGIN{FS=":"}{print $2}' )
Vmware_platform=$( hostnamectl | grep Virtual | awk 'BEGIN{FS=":"}{print $2}' )
Architecture=$( hostnamectl | grep Architecture | awk 'BEGIN{FS=":"}{pri