Linux命令

2019-03-12  本文已影响0人  菜鸟小学生

系统命令

shutdown -h now   立刻关机
shutdown -h 20:25  系统在 20:25 分会关机
shutdown -h +10  十分钟后自动关机
shutdown -r now  立刻重启
shutdown -r +30 '系统即将重启'  30分钟重启系统,并显示后面的信息给所有在在线的使用者
reboot  立刻重启(使用权限:root用户)

防火墙

永久关闭
开启: chkconfig iptables on 
关闭: chkconfig iptables off
即刻生效
开启: service iptables start 
关闭: service iptables stop
开启部分端口号
vim /etc/sysconfig/iptables
添加想要开启的相关端口
-A INPUT -m state --state NEW -m tcp -p tcp --dport xxxx -j ACCEPT

刷新重启

service iptables restart 

赋值可执行文件权限

chmod u+x xx.sh

tail

tail -f xxx.log  循环读取日志文件

同步时间

yum -y install ntp ntpdate
ntpdate cn.pool.ntp.org

修改主机名称

vim /etc/sysconfig/network
修改 HOSTNAME=主机名称

检查是否开机启动

chkconfig --list | grep 检查项
上一篇下一篇

猜你喜欢

热点阅读