Linux centos8 安装 qbittorrent yum -y install epel-release yum install qbittorrent-nox -y qbittorrent-nox --webui-port=8081 -d 通过浏览... 2022年7月25日评论 阅读全文
Linux CentOS8 重启网络服务 重新载入配置文件 nmcli c reload 重启网络服务(三条都可以) nmcli c up ens33 nmcli d reapply ens33 nmcli d connect ens33 2022年7月5日评论 阅读全文
Linux Crontab 配置 HE.NET DDNS 每5分钟更新一次IP地址 */5 * * * * curl -4 "https://域名:密码@dyn.dns.he.net/nic/update?hostname=域名" 2022年4月22日评论 阅读全文
Linux Centos 8 增加 Swap空间 fallocate -l 1G /swapfile dd if=/dev/zero of=/swapfile bs=1024 count=1048576 chmod 600 /swapfile mks... 2022年4月11日评论 阅读全文
Linux centos 安装 tcpping yum install epel-release -y yum install tcptraceroute bc -y wget http://www.vdberg.org/~richard/tcpp... 2022年3月27日评论 阅读全文
Linux centos 禁用 IPV6 vi /etc/sysctl.conf 加入: net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 2022年3月27日评论 阅读全文
Linux 数据删除之后,ID不连续的处理办法 SET @i=0; UPDATE `tablename` SET `id`=(@i:=@i+1); ALTER TABLE `tablename` AUTO_INCREMENT=0 2021年11月30日评论 阅读全文
Linux Esxi、WebMin、EdgeMax路由配置SSL证书 Esxi 替换路径:/etc/vmware/ssl 然后重启服务: /etc/init.d/hostd restart /etc/init.d/vpxa restart WebMin证书路径:/etc... 2019年2月18日评论 阅读全文
Linux 用acme.sh颁发SSL证书 curl https://get.acme.sh | sh 安装好之后,需要先断开终端,重新连接一次,以使命令生效 acme.sh --upgrade --auto-upgrade --account... 2019年2月14日评论 阅读全文
Windows win10 l2tp方式连不上vpn 架设好All in one Home Server之后,尝试win10连接时,发现一直连接不上,一直报错,查询之后得出解决方案,记录一下: 在注册表 "HKEY_LOCAL_MACHINE\SYSTE... 2019年2月13日评论 阅读全文