service network restart 重启网卡
更改主机名:
vim /etc/sysconfig/network -> HOSTNAME
关联ip和主机名: vim /etc/hosts,这样就可以ping 主机名
关闭防火墙:service iptables stop 检查防火墙是否关闭:service iptables status
查看linux下启动服务:chkconfig --list
永久关闭防火墙启动服务:chkconfig iptables off
shell获得本机IP方法:
IP=`ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}'`; echo $IP;
chmod 777 */*.sh