09 2016 档案

摘要:启动指令:service iptables start 重启指令:service iptables restart 关闭指令:service iptables stop 配置文件: /etc/sysconfig/iptables /etc/init.d/iptables save 会将之前iptab 阅读全文
posted @ 2016-09-28 23:52 li-xingtao 阅读(127) 评论(0) 推荐(0)
摘要:python的pickle模块实现了基本的数据序列和反序列化。通过pickle模块的序列化操作我们能够将程序中运行的对象信息保存到文件中去,永久存储;通过pickle模块的反序列化操作,我们能够从文件中创建上一次程序保存的对象。 基本接口: pickle.dump(obj, file, [,prot 阅读全文
posted @ 2016-09-24 15:29 li-xingtao 阅读(141) 评论(0) 推荐(0)