排序
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...
动态ddns(动态域名)脚本
将脚本放到 /etc/ 下 执行下面命令 每5分钟重复运行一次脚本 echo */5 root /etc/ddns.sh >> /etc/crontab 定期任务发送邮件给ROOT 不需要的话编辑定期任务文件 vi /etc/crontab -l #定期...
docker-安装docker
WIN7安装docker : WIN7安装docker需要利用docker toolbox来安装 国内阿里云的镜像下载地址:http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/ 此次下载文件版本为"Docker...