最新 最热

vps设置

mv -f a/* /b/强制移动,当b目录中有和a中冲突的文件夹时候,使用cp

2020-03-04
1

树莓派raspbian安装matchbox-keyboard虚拟键盘

官网安装地址:http://ozzmaker.com/virtual-keyboard-for-the-raspberry-pi/

2020-02-28
1

BGP学习 总结3

1 largest weight ( local orininated path :32768 other 0 )

2020-01-10
0

centos 编译安装python2.7

./configure --prefix=/usr/local --with-libs='/usr/local/include/zconf.h'

2020-01-10
1

python全局变量-局部变量用法和区别

a="hello"  #全局变量adef test(): a="hell0 local" #定义了一个局部变量a b =a     #test方法里之后再调用a时,都是局部的a print(b+",",a)test()

2020-01-09
0

error while loading

error while loading shared libraries:libltdl.so.3:cannot open shared object file:no such file or directory

2020-01-09
1

H3C开启SNMP协议

snmp-agent  snmp-agent local-engineid 800063A2035866BAF05801  snmp-agent community write bfzx  snmp-agent sys-info version all  snmp-agent target-host trap ...

2020-01-09
1

python之sys模块

sys.argv 命令行参数List,第一个元素是程序本身路径;类似于shell的位置参数 sys.argv[0] 表示程序自身sys.argv[1] 表示程序的第一个参数sys.argv[

2020-01-08
1

开机自动运行python脚本

3、编辑/usr/lib/systemd/system/rc-local.service,添加如下内容

2020-01-07
1

JVM系列四(内存分配策略).

前面的文章介绍了对象的创建过程,其中第三步 —— 分配内存,只是简单的介绍了分配的方式 —— 指针碰撞、空闲列表,其实内存在堆上分配还大有文章嘞。...

2019-12-24
1