其他一键安装脚本
This commit is contained in:
21
common-software-install/common-software-install.sh
Normal file
21
common-software-install/common-software-install.sh
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
# '\033[字背景颜色;字体颜色m字符串\033[0m'
|
||||
GREENCOLOR='\033[1;32m'
|
||||
NC='\033[0m'
|
||||
|
||||
echo "===================================================="
|
||||
printf "${GREENCOLOR} common-software's install begin ${NC} \n"
|
||||
echo "===================================================="
|
||||
|
||||
# 为了使用 ifconfig 命令, 需要安装 net-tools
|
||||
yum -y install net-tools
|
||||
yum -y install vim
|
||||
yum -y install wget
|
||||
yum -y install autoconf
|
||||
yum -y install gcc gcc-c++ make
|
||||
yum -y install git
|
||||
|
||||
echo "===================================================="
|
||||
printf "${GREENCOLOR} common-software's install finish ${NC} \n"
|
||||
echo "===================================================="
|
Reference in New Issue
Block a user