排序
linux下部署Clash+dashboard
安装 先在用户目录建立clash的文件夹, 因为我自己是内网所以直接root目录 mkdir -p /root/.config/clash && cd /root/.config/clash 用clash的一个主要原因就是因为支持订阅, 用机场比...
NGINX编译提示需要LuaJIT 2.x.的解决办法
报错代码: ./configure: error: unsupported LuaJIT version; ngx_http_lua_module requires LuaJIT 2.x. 解决方法: 先查看是否已安装lua-devel,直接执行安装即可 yum install lua-devel 添...
openwrt解决history不保存问题
更换openwrt shell解析器为bash,解决history不保存问题 原因:由于 openwrt 默认 root 用户使用的 shell 解释器是 ash 它的 history 命令默认只能在当前这次 ssh 会话中有效,当你 exit 重新 ssh...
EMBY-搭建私有影音媒体库(附破解补丁)更新至4.8.10
安装EMBY服务端 EMBY服务端所有版本下载连接: Emby-Server 4.8.10.0下载链接 下载自己服务器系统的安装包,比如Centos使用yum命令直接下载RPM包并安装 Centos: yum install -y https://github....
Certbot和DNSPod获取免费ssl证书及自动续签(含泛域名证书)
测试环境:Centos7,其他系统自行替换命令 删除其他版本的 certbot 先把以前的老版本的 Certbot 删除: yum remove certbot 安装 python 3.7或以上版本 测试时间2024-10-23,使用python3.6版本...
Centos7安装SCL YUM源
由于CentOS已经停止维护,正常yum安装的源无法正常使用,需要手动修改为其他源 1.先安装官方的源 yum install centos-release-scl centos-release-scl-rh -y 2.修改为清华源 需要修改的文件为: /e...
Centos7.6-glibc版本升级至2.30
Centos7.6-glibc版本升级至2.30 先安装基础库: yum install -y texinfo mlocate bzip2 bison 使用它安装devtoolset-8(安装为gcc8以上版本) 首先安装Centos的scl软件源,参考: 然后安装gcc8等...
Ubuntu22.04编译安装nginx时报错error: ‘ENGINE_free’ is deprecated: Since OpenSSL 3.0
编译时添加编译参数即可 ./configure --with-cc-opt='-Wno-error -Wno-deprecated-declarations'
python-selenium报错解决大全
selenium安装教程: 运行报错处理 错误1:'ascii' codec can't encode characters in position 0-1: ordinal not in range(128) 错误2 : session not created: DevToolsActivePort file doesn't e...
linux安装Python-selenium+webdriver(Centos、ubuntu)
linux安装Python-selenium+webdriver(Centos、ubuntu) 略过Python的安装教程 首先安装selenium pip3 install selenium 如果系统自带的python未安装pip,使用apt进行安装pip模块 sudo apt inst...