张文兵博客
首页
工具
留言板
使用ffmpeg制作gif动画
ffmpeg -ss 0.0 -i test.mov -an -filter_complex "[0:v]trim=start_frame=0:end_frame=75,fps=5,scale=320:-1:flags=lanczos,split[a][b];[a]palettegen[p];[b] ...
MacOS 修改最大打开文件数
launchctl 管理自启动 # 创建配置文件,可根据自己情况修改65535数值 sudo vim /Library/LaunchDaemons/local.system.maxfiles.plist <?xml version="1.0" encoding="UTF-8"?> <!DOCT ...
linux开启tcp_tw_recycle引发的问题总结
存在场景 服务端 cat /etc/sysctl.conf ... net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_timestamps = 1 ... 客户端 k8s集群pod中请求服务端的http接口 客户端host抓包 tcpdump -i bo ...
Linux 查看SN序列号及服务器型号
查看服务器型号 dmidecode | grep 'Product Name' 查看SN序列号 dmidecode -t system | grep 'Serial Number' 查看SN序列号和型号 dmidecode | grep "System Information" -A9 ...
合并其他分支的commit到当前分支
# 一次合并一个或多个提交记录 $ git cherry-pick <hash a> <hash b> # 按照提交记录区间合并代码. 必须按照正确的顺序放置:提交 hashA 必须早于提交 hashB,否则命令将失败,但不会报错。 ### 注意,在git中,区间为左开右闭。使用下面的命令,提交 h ...
ansible 超详细讲解[值得收藏]
ansible安装 yum install python39 -y pip3.9 install ansible # 查看版本 ansible --version ansible配置 mkdir /etc/ansible # 此处根据安装的 ansible 版本进行修改 # wget -O ...
ffmpeg 编译错误信息汇总
添加 -lpostproc Undefined symbols for architecture x86_64: "_pp_free_context", referenced from: _pp_uninit in libavfilter.a(vf_pp.o) "_pp_fre ...
检测内存错误(edac)
安装工具 yum install -y libsysfs edac-utils 检测命令 # 详细信息 edac-util -v # 只显示错误信息 edac-util -q ...
netem 模拟丢包乱序延迟
安装工具 # centos yum install iproute-tc -y # debian apt-get install iproute2 使用方法 帮助信息 tc -h tc qdisc help 查看配置 tc qdisc show dev bond0 删除配置 t ...
linux 查询内存条信息
内存条数 dmidecode|grep -P -A5 "Memory\s+Device"|grep Size|grep -v Range 内存最大容量 dmidecode|grep -P 'Maximum\s+Capacity' 内存频率 dmidecode|grep -A16 "Me ...
张文兵
90后程序员
湖南 - 长沙
分类导航
Golang
Linux
Git
Database
FFmpeg
Game
Python
Node.js
.Net
Java
MacOS
Windows
Sharing
Other
热文排行
SecureCRT SecureFX for mac 破解版
ffmpeg音频合成命令全集
Mac terminal清除历史命令纪录
nginx+rtmp+hls直播推流
.net core简单读取xml内容
golang创建目录的权限问题
beego orm关联查询之多对多(m2m)
tcpdump之UDP抓包
MinIO 多种部署及扩容方案
Golang-RSA加密解密-无数据长度限制
packets.go:36: unexpected EOF
【实战】opencv 文字区域的提取
CentOS7 搭建NFS服务
asp.net core 2.0 EntityFrameworkCore之增删改查
python ftplib模块使用方法
友情链接
首页
留言板