会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
I want to change the world
博客园
首页
新随笔
联系
订阅
管理
2020年1月4日
Linux虚拟机网络
摘要: 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)
2020年1月3日
CentOS7中安装使用FastDFS上传文件并配合nginx下载文件&与python交互
摘要: 1.先安装libfastcommon, 它里面包含了FastDFS以来的一些包, 在安装FastDFS 找到libfastcommon的git地址, 复制下载链接, 在centos上下载压缩包 wget https://github.com/happyfish100/libfastcommon/ar
阅读全文
posted @ 2020-01-03 14:50 Sylas
阅读(666)
评论(0)
推荐(0)
2019年12月26日
Python多继承时, 如何灵活调用各个父类中的同名方法
摘要: 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)
公告