25 articles
Thursday, Nov 30, 2023
ubuntu、debian等Linux系统ssh登陆显示系统信息 Linux通过安装landscape可以在登录ssh时显示登录的时间,显示当前进程数,IP,内存,硬盘等一些使用情况。不错的功能,还能知道上次登录的时间以及IP。 Ubuntu系统可以通过命令 javascript sudo apt-...
ubuntu/Debian出现 libcrypto.so.1.1: cannot open shared object file:的解决方法 wget http://debian.mirror.ac.za/debian/pool/main/o/openssl/libssl1.11.1.1n-0%2B...
Tuesday, Apr 25, 2023
在ARM服务器中基于ubuntu系统一键架设nginx quic http3环境, 母鸡使用的ARM服务器,非X86,这里介绍一键架设nginx quic http3环境的方法。 当然喜欢折腾的也可以自行在ARM服务器编译安装nginx quic http3环境,但是真的很蛋疼,一大堆报错 至...
Saturday, Apr 22, 2023
很早之前就说过,修改ubuntu的DNS服务器后会自动恢复为127.0.0.1:53 今天再次查看ubuntu的/etc/resolv.conf文件后才发现ubuntu的DNS服务器是有resolvectl管理的 也就是说ubuntu不想其它Linux发行版那样修改/etc/resolv.conf文...
Saturday, Apr 8, 2023
After installing docker, sometimes the docker is uninstalled, and the virtual bridge is still there. At this time, the docker bridge needs to be manua...
安装了docker后,有时候卸载了docker,虚拟网桥也还在,这时候需要手动卸载docker网桥 ifconfig查看docker创建的网卡名称,一般是br开头和docker0的 安装brctl工具 Fedora/Centos系统 $ yum install -y bridge-utils ...
Wednesday, Oct 26, 2022
在ubuntu和Debian系统上实现单网卡绑定多个IP v6地址的方法 单网卡绑定多个IPv6的需求,可以适用于不同的域名,比如在nginx绑定某个独立的IPv6地址 前提就先要把多个对立IPv6地址绑定到单网卡上。 当然也可以适用虚拟网卡,本文只介绍使用单网卡绑定多个IPv6地址的方法. 下面是...
Tuesday, Aug 24, 2021
Modify the /etc/sysctl.conf file and add the following net.ipv6.conf.all.disableipv6=1 net.ipv6.conf.default.disableipv6=1 net.ipv6.conf.lo.disableipv...
修改 /etc/sysctl.conf 文件 添加以下内容 net.ipv6.conf.all.disableipv6=1 net.ipv6.conf.default.disableipv6=1 net.ipv6.conf.lo.disableipv6=1 执行 sysctl -p 使设置生效 懒人...
Wednesday, Apr 8, 2020
debian /ubuntu系统安装测速软件的方法 apt-get update && apt-get upgrade apt-get install speedtest-cli 在终端执行 speedtest-cli speedtest-cli 会自动拉取距离你最近数据中心的数据 https:/...