02 2019 档案
摘要:使用向导 With the iptables service, every single change means flushing all the old rules and reading all the new rules from /etc/sysconfig/iptables, while
阅读全文
摘要:这里使用Windows自带的东西查看电源使用情况。 1.按Win键+R,输入cmd,回车。 2.输入Powercfg /batteryreport回车。 3.根据提示找到电池报告文件,双击打开即可。
阅读全文
摘要:个人觉得,Shell没有其他语言方便,同样是脚本语言,我更倾向于Python。 Shell怎么输出1,2,3,4类似的递增数列呢? #!/bin/bash i=0 while [ $i -le 100 ] do echo $i let i=$i+1 done 输出结果: 从0输出到100,还是很简单
阅读全文
摘要:客户端 yum -y intall telnet 服务端 yum -y install xinetd #telnet服务依赖于xinetd yum -y install telnet-server #安装telnet服务端 systemctl start xinetd #开启xinetd服务 sys
阅读全文