会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
LDoctorF
博客园
首页
新随笔
联系
订阅
管理
1
2
下一页
2020年11月24日
交叉编译zeromq以及go交叉编译cgo依赖
摘要: 交叉编译zeromq,并编译go可执行文件 交叉编译libsodium ./configure --host=aarch64-himix100-linux --prefix=/home/udsafe/ && make && make install 交叉编译libzmq ./configure --
阅读全文
posted @ 2020-11-24 11:16 LDoctorF
阅读(911)
评论(0)
推荐(0)
2020年11月9日
cntos7.7 x86架构下编译安装lxd
摘要: centos安装: yum install acl autoconf dnsmasq git golang libacl libacl-devel libtool make rsync squashfs-tools tar tcl ebtables 编译xz-utilscd /root/hbdl/x
阅读全文
posted @ 2020-11-09 23:16 LDoctorF
阅读(295)
评论(0)
推荐(1)
2020年7月30日
Lxd-4.0.2 在arm架构下源码编译
摘要: Lxd-4.0.2 在arm架构下源码编译 1、安装过程 1.环境:centos7.6-aarch64 2.安装epel源 yum -y install epel-release 3.安装lxd依赖包 yum install acl autoconf dnsmasq-base git golang
阅读全文
posted @ 2020-07-30 11:10 LDoctorF
阅读(774)
评论(0)
推荐(0)
2020年7月20日
ubantu arm iso镜像地址
摘要: http://cdimage.ubuntu.com/releases/16.04/release/ virt Manager 管理虚拟机 使用qemu/kvm安装镜像
阅读全文
posted @ 2020-07-20 14:41 LDoctorF
阅读(1507)
评论(0)
推荐(0)
2019年5月9日
elsticsearch 日志分析系统学习
摘要: 文档 Document 用户存储在es中的数据文档索引 Index 由具有相同字段的文档列表 查看当前所有索引 GET /_cat/indince 节点Node 一个Elasticsearch的运行实例,是集群集群master elasticsearch Document Json Object 数
阅读全文
posted @ 2019-05-09 15:21 LDoctorF
阅读(870)
评论(0)
推荐(0)
2019年4月9日
zabbix api python使用
摘要: API使用 zabbix官网文档:https://www.zabbix.com/documentation/2.2/manual/api, Zabbix API是基于JSON-RPC 2.0规格,具体实现可以选择任何自己爱好的编程语言,可以采用Perl、Ruby、PHP之类的。 本文已python为
阅读全文
posted @ 2019-04-09 21:18 LDoctorF
阅读(2999)
评论(0)
推荐(0)
2019年3月5日
gitlab搭建
摘要: 基于腾讯云 gitlab搭建:https://blog.csdn.net/duyusean/article/details/80011540 gitlab使用:https://blog.csdn.net/justlpf/article/details/80681853 gitlab搭建提示inet_
阅读全文
posted @ 2019-03-05 14:56 LDoctorF
阅读(230)
评论(0)
推荐(1)
2018年5月15日
常用模块
摘要: 什么是模块 常见的场景:一个模块就是一个包含了python定义和声明的文件,文件名就是模块名字加上.py的后缀。 但其实import加载的模块分为四个通用类别: 1.使用python编写的代码(.py文件) 2.已被编译为共享库或DLL的C或C++扩展 3.包好一组模块的包 4.使用C编写并链接到p
阅读全文
posted @ 2018-05-15 12:12 LDoctorF
阅读(167)
评论(0)
推荐(0)
2018年5月7日
递归函数
摘要: 递归函数 递归函数的定义: 在一个函数里调用他本身,这种使用函数的方式就叫这做递归。 递归的最大深度: 最后得出结论,递归的最大深度是997,为什么是997呢,是因为python为了我们程序的内存优化所设定的一个默认值,我们当然还可以通过一些手段去修改它: 虽然说我们可以根据这个方式修改递归最大限制
阅读全文
posted @ 2018-05-07 21:12 LDoctorF
阅读(173)
评论(0)
推荐(0)
2018年5月5日
内置函数与匿名函数
摘要: 格式说明 练习 现有两个元组(('a'),('b')),(('c'),('d')),请使用python中匿名函数生成列表[{'a':'c'},{'b':'d'}] #答案一 test = lambda t1,t2 :[{i:j} for i,j in zip(t1,t2)] print(test(t
阅读全文
posted @ 2018-05-05 01:49 LDoctorF
阅读(280)
评论(0)
推荐(0)
1
2
下一页
公告