Logo

jelllyfin通过https访问SSL设置

...

windows_server中jellyfin硬解设置

...

Moosefs分布式master主机损坏还原

1. 模拟元数据损坏mfsmaster stopmv /var/lib/mfs/metadata.mfs /home/mv /var/lib/mfs/changelog.0.mfs /home/mfsmaster start# 提示元数据损坏恢复2. 元数据恢复从metalogger上将最新一份...

Moosefs常用命令

1. mfsgetquota(查询文件占用容量)mfsgetquota -h test/ # 二进制统计容量大小,推荐!mfsgetquota -H test/ # 十进制统计容量大小mfsgetquota -g test/ # 用GiB来统计容量大小2. mfssetquota(设定文件夹占...

CentOS 7/8开启Google BBR

Google BBR (Bottleneck Bandwidth and RTT) 是一种新的TCP拥塞控制算法,它可以高效增加吞吐和降低网络延迟,并且Linux Kernel4.9+已经集成该算法。开启BBR也非常简单,因为它只需要在发送端开启,网络其他节点和接收端不需要任何改变。1.升级内核安装...

Shadowsocks手动 添加和编辑 PAC中的网址规则

给用户设置规则的文件user-rule.txt该文件在shadowsocks.exe同级文件夹中语法规则如下=== 通配符支持 => **.example.com/ 代表 http://example.com http://233.example.com https://233.example...

Centos下源码安装redis

1.下载wget https://download.redis.io/redis-stable.tar.gz2.编译环境yum install -y cmake make gcc gcc-c++3.编译安装tar -xzvf redis-stable.tar.gzcd redis-stablemak...

Centos7下iperf3的安装使用教程

一、介绍iperf3是用来测量一个网络最大带宽的工具。它支持调节各种参数比如发送持续时间,发送/接收缓存,通信协议。每次测试,它都会报告网络带宽,丢包率和其他参数。更多信息请登陆官网:https://iperf.fr/二、安装(centos7为例)下载:https://iperf.fr/iperf-...

Centos7下yum安装Python3.6环境

1.安装EPELyum install epel-release -y2.安装Python3.6yum install python3 -y...

Centos下yum安装openresty

1.添加源# add the yum repo:wget https://openresty.org/package/centos/openresty.repomv openresty.repo /etc/yum.repos.d/# update the yum index:yum check-up...