2021-11-11
树莓派控制16路PWM输出的PCA9685模块
树莓派控制16路PWM输出的PCA9685模块 1.PCA9685 1.1简介 采用I2C通信,内置了PWM驱动器和一个时钟,不需要不断发送信号占用单片机资源 支持16路PWM输出,每路12位分辨率(...
2021-05-27
ubuntu复用danted匿名socks5服务器
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3...
2021-05-26
openvpn 添加本地路由表
默认情况下,VPN 连接成功后会自动增加一些路由,并把网关设置成 vpn 的,所以所有的流量都会通过 VPN 来传送,但是如果使用 openvpn,可以自己修改路由,指定某些 ip 走 vpn,或者某...
2021-05-15
ln: error while loading shared libraries: libc.so.6: cannot open shared object处理
export LD_PRELOAD=/lib64/libc-2.5.so 后面指定旧的库文件后,复制原版本文件恢复
2021-05-10
MAC 安装 bsddb
wget http://download.oracle.com/berkeley-db/db-6.2.32.tar.gz 解压到适当的文件夹 cd ./db-6.2.32/build_unix ../...
2021-04-06
ts后缀文件aes加密视频合并并转换为mp4
ffmpeg -allowed_extensions ALL -i 2.m3u8 -c copy -bsf:a aac_adtstoasc 2.mp4
2021-03-29
error: command ‘gcc’ failed with exit status 1 & ImportError: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.18′ not found
1.error: command ‘gcc’ failed with exit status 1 今夜在CentOS release 6.9 和Python 2.7.3环境下,...
2020-08-19
解决python3.7与openssl的低版本不兼容的问题
安装了Python3.7之后,遇到的一个很麻烦的坑就是与系统自带的ssl版本不兼容, Python3.7需要的openssl的版本为1.0.2或者1.1.x,这个requirements在config...