Linux Centos 8 Stream 修改网卡名称 1、修改网卡名称: mv ifcfg-ens160 ifcfg-eth0 并修改网卡文件内容 2、修改内核参数并重新生成grub引导文件 grubby --update-kernel=ALL --ar... 11/156,803评论 阅读全文
Linux centos8 安装 qbittorrent yum -y install epel-release yum install qbittorrent-nox -y qbittorrent-nox --webui-port=8081 -d 通过浏览... 07/257,680评论 阅读全文
Linux Centos 8安装onlyoffice 安装最新的 NGINX 包版本 要为 RHEL/CentOS 设置 yum 存储库,请创建名为/etc/yum.repos.d/nginx.repo以下内容的文件: [nginx-stable] na... 07/226,836评论 阅读全文
Linux Centos8 搭建 Stun、Turn服务 1、使用dnf安装coturn dnf install coturn 2、添加用户 turnadmin -a -u coturn(用户名) -r xx.xx.xx.xx -p coturn(密码) 3... 07/227,150评论 阅读全文
Linux CentOS8 重启网络服务 重新载入配置文件 nmcli c reload 重启网络服务(三条都可以) nmcli c up ens33 nmcli d reapply ens33 nmcli d connect ens33 07/055,719评论 阅读全文
Linux 升级openssl 先装环境 yum -y install perl perl-devel gcc gcc-c++ 然后去下载最新版本: 官网下载地址: https://www.openssl.org/source/ t... 05/067,043评论 阅读全文
生活点滴 Centos 安装 nodejs curl --silent --location rpm.nodesource.com/setup_10.x | sudo bash - yum -y install nodejs 04/306,861评论 阅读全文
Linux Crontab 配置 HE.NET DDNS 每5分钟更新一次IP地址 */5 * * * * curl -4 "https://域名:密码@dyn.dns.he.net/nic/update?hostname=域名" 04/227,322评论 阅读全文
Linux Centos 8 增加 Swap空间 fallocate -l 1G /swapfile dd if=/dev/zero of=/swapfile bs=1M count=1024 chmod 600 /swapfile mkswap /... 04/118,860评论 阅读全文