摘要: 1.Kali联网 1.1 修改配置文件, vim /etc/network/interfaces auto lo iface lo inet loopback # 配置第一个以太网接口 auto eth0 # dhcp表示动态地设置本机的IP地址 iface eth0 inet dhcp 阅读全文
posted @ 2020-01-04 13:59 Sylas 阅读(96) 评论(0) 推荐(0)
摘要: 1.先安装libfastcommon, 它里面包含了FastDFS以来的一些包, 在安装FastDFS 找到libfastcommon的git地址, 复制下载链接, 在centos上下载压缩包 wget https://github.com/happyfish100/libfastcommon/ar 阅读全文
posted @ 2020-01-03 14:50 Sylas 阅读(666) 评论(0) 推荐(0)
摘要: super(Classname, self).methodname() 或 super(Classname, cls).methodname() 调用"下一个"父类中的方法 1.假设类A继承B, C, D: class A(B, C, D), B/C/D都有一个show()方法 a.调用B的show 阅读全文
posted @ 2019-12-26 10:27 Sylas 阅读(1623) 评论(0) 推荐(0)