Posts
ZpqdeBlog
Cancel

Mac os client_loop: send disconnect: broken pipe

/etc/ssh/ssh_config Host * ServerAliveInterval 60 TCPKeepAlive no https://unix.stackexchange.com/questions/602518/ssh-connection-client-loop-send-disconnect-broken-pipe-or-connectio...

Synology VideoStation ffmpeg wrapper with DTS, EAC3 and TrueHD support

原文: https://zhuanlan.zhihu.com/p/393311059 安装ffmpeg 套件中心->设置->套件来源->新增 http://packages.synocommunity.com/ 国内源: https://spk7.imnks.com/ 搜索安装ffpmeg 通过SSH连接群晖,并输入sudo -...

rclone挂载GoogleDrive

原文: https://www.unvone.com/69270.html 安装 环境Centos7 curl https://rclone.org/install.sh | sudo bash yum install fuse -y 开始配置 rclone config 输入 n 新建 No remotes found - make a new one n) New re...

黑苹果显示器花屏红屏幕问题解决

CPU i5-7500 显卡 英特尔® 核芯显卡 630 在完成正常显示驱动名称和显存时显示器颜色有偏差 先尝试使用Hackintool重新打一下缓冲帧以及显卡修复的补丁 如果上述步骤不行 则尝试修改对应Mac产品型号与CPU型号相似的Mac型号标识PI->Generic->SystemProductName 我安装的黑苹果系统版本是 Catalina 对应...

OpenWrt安装composer的一些问题

openwrt 安装composer遇到的问题 composer Failed to decode zlib stream 可能存在的问题是 依赖没有安装 网络下载问题 (大多数问题) opkg update opkg install zlib composer 运行出现 Fatal error: date_default_timezone_get(): Timezo...

mac os 替换自带php版本

通过brew 安装的php版本后执行命令 brew info php@7.2 执行后会提示需要执行的命令 If you need to have this software first in your PATH instead consider running: echo 'export PATH="/usr/local/opt/php@7.2/bin:$PATH"' >&g...

Spring Data Elasticsearch中如何使用LocalDateTime

百度搜索出来的结果基本上都是如下 @Bean public ElasticsearchTemplate elasticsearchTemplate(Client client) { return new ElasticsearchTemplate(client, new CustomEntityMapper()); } public static clas...

DHT网络中获取MetaInfo

DHT 网络加入 协议 协议原文链接 http://www.bittorrent.org/beps/bep_0000.html 数据交换通过Bencode进行包装发送,这里只讲实现方式. 主要几个请求 ping find_node get_peers announce_peer ping 用于判断DHT节点是否存活 find_node 用于加入DHT网络节...

在 Centos 7 上搭建 strongSwan VPN IKEv2 整合 FreeRadius 用户认证系统

第一步 安装strongSwan yum -y install epel-release yum -y install strongswan openssl strongswan pki --gen --type rsa --size 4096 --outform pem > ca.key.pem strongswan pki --self --in ca.key.pem --...

Linux下mysql的自动补全工具mycli

在linux 终端下编写mysql命令时没有在windows下方便 找到一个自动补全的工具记录下 yum -y install epel-release python-pip python-devel pip install mycli mycli -u root -p root // 用户名密码都是root