发布时间:2015-10-29 17:10:16
操作系统环境:CentOS Linux release 7.0.1406(Core) 64位CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙步骤。1、关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动firewall-cmd --state #查看默认防火墙状态.........【阅读全文】
发布时间:2015-10-27 15:44:10
让echo输出带颜色的方法有两种1.在shell脚本中定义颜色变量,使用echo -e调用变量2.定义变量的时候,把echo -e定义到变量中,然后输出变量可以让echo输出显示颜色的shell脚本#!/bin/bash#定义颜色的变量RED_COLOR='\E[1;31m' #红GREEN_COLOR='\E[1;32m' #绿YELOW_COLOR='\E[1;33m' #黄BLUE_COLOR='\E[1;34.........【阅读全文】