jambi

导航

 

2023年5月15日

摘要: 最后通过 export 设置环境变量解决问题。 export OPENSSL_ROOT_DIR=/usr/local/openssl export OPENSSL_LIBRARIES=/usr/local/openssl/lib 参考链接:https://blog.csdn.net/davidull 阅读全文
posted @ 2023-05-15 10:19 jambi 阅读(9393) 评论(0) 推荐(0)
 

2023年1月31日

摘要: 下载libuv源码 https://github.com/libuv/libuv/releases 解压,在powershell中打开源码路径。 编译源码(编译前确认已完成cmake和mingw64的安装配置) mkdir -p build cd build cmake -G "MinGW Make 阅读全文
posted @ 2023-01-31 00:13 jambi 阅读(679) 评论(0) 推荐(0)
 

2022年4月12日

摘要: freeswitch启动后,查看其绑定的ip和端口 netstat -tlunp 可以通过修改vars.xml配置文件修改绑定的ip vim /usr/local/freeswitch/conf/vars.xml 找到“<X-PRE-PROCESS cmd="set" data="domain=$$ 阅读全文
posted @ 2022-04-12 21:55 jambi 阅读(1027) 评论(0) 推荐(0)
 

2022年4月11日

摘要: 安装依赖项 yum install zlib-devel openssl-devel libjpeg-turbo-devel sqlite-devel libcurl-devel speex-devel libedit-devel ldns-devel -y 下载freeswitch版本 https 阅读全文
posted @ 2022-04-11 22:17 jambi 阅读(180) 评论(0) 推荐(0)
 

2022年1月7日

摘要: 项目需要串口通讯,github上搜到一个串口库serial,克隆下来编译发现需要用到cmake的catkin模块进行编译,catkin的预编译安装目前只支持ubuntu系统。centos下需要用源码进行编译安装,由于网络资料不全,折腾了很久,记录如下: 1.安装支持环境 1.1 epel扩展源 yu 阅读全文
posted @ 2022-01-07 17:25 jambi 阅读(501) 评论(0) 推荐(0)
 

2019年12月10日

摘要: 1,安装ubuntu 16.4 依赖 2,安装nginx1.14.2 2.1 下载软件 2.2 解压软件到当前目录 3,下载nginx-rtmp-module 4,配置nginx 5,修改makefile文件,查找并删除“-Werror“字符串 6,编译并安装Nginx 7,修改nginx.conf 阅读全文
posted @ 2019-12-10 16:24 jambi 阅读(991) 评论(0) 推荐(0)
 

2019年5月9日

摘要: 一,安装pythron开发环境 1,安装pythron3 参考https://www.runoob.com/python3/python3-install.html,注意需打开windows长路径 2,安装pythron虚拟环境virtualenv 3,创建虚拟环境 4,激活虚拟环境 5,安装ten 阅读全文
posted @ 2019-05-09 11:32 jambi 阅读(369) 评论(0) 推荐(0)
 

2018年5月24日

摘要: 参考链接:https://blog.csdn.net/so5418418/article/details/78355868 https://blog.csdn.net/wgh1015398431/article/details/70780722?locationNum=6&fps=1 1,安装go 阅读全文
posted @ 2018-05-24 13:17 jambi 阅读(696) 评论(0) 推荐(0)
 

2018年3月22日

摘要: 原文链接 https://www.jianshu.com/p/f6425e2f8643 https://github.com/del-xiong/screw-plus http://git.oschina.net/splot/php-screw-plus screw plus是一个开源的php扩展, 阅读全文
posted @ 2018-03-22 10:06 jambi 阅读(241) 评论(0) 推荐(0)
 

2017年9月18日

摘要: i 在当前光标处插入字符,并进入编辑模式 o 在当前光标插入下一行 x 从当前光标处向后删除一个字符。 dd 删除当前光标处所在行 :q! 强制退出不保存 :q 退出(文本有改动则警告) :w 保存不退出 :wq保存后退出 esc键,退出编辑模式 阅读全文
posted @ 2017-09-18 17:23 jambi 阅读(137) 评论(0) 推荐(0)