删除损坏的数据库文件
1 |
rm -f /var/lib/rpm/__db* |
清理 dnf 缓存
1 |
dnf clean all |
重建数据库
1 |
rpm -vv --rebuilddb |
重新更新
1 |
dnf update |
… 阅读全文
删除损坏的数据库文件
1 |
rm -f /var/lib/rpm/__db* |
清理 dnf 缓存
1 |
dnf clean all |
重建数据库
1 |
rpm -vv --rebuilddb |
重新更新
1 |
dnf update |
… 阅读全文
安装 dnf-automatic
1 |
dnf install dnf-automatic |
编辑配置文件
1 |
nano /etc/dnf/automatic.conf |
修改配置
1 |
apply_updates = yes |
保存退出
启动dnf计时器
以管理员身份运行CMD
1 2 3 4 5 |
#从IE导入代理设置 netsh winhttp import proxy ie #独立设置代理 netsh winhttp set proxy 127.0.0.1:1088 "localhost;127.*;10.*;172.16.*;172.17.*;172.18.*;172.19.*;172.20.*;172.21.*;172.22.*;172.23.*;172.24.*;172.25.*;172.26.*;172.27.*;172.28.*;172.29.*;172.30.*;172.31.*;192.168.*;<local>" |
… 阅读全文
本文介绍使用 StrongSwan 搭建 VPN 的过程,适合有一定 linux 基础的用户。
StrongSwan 是基于 OpenSource IPsec 的 VPN 解决方案,官方网站:https://www.strongswan.org/ ,如果无法访问请使用科学上网,原因你懂的。
本文描述从一个初始系统开始逐步完成搭梯的过程。
以 root 用户登录
安装 epel 源
1 |
dnf install epel-release |
更新系统
1 |
dnf update |
安装必备软件
1 2 3 4 5 |
dnf install nano wget nginx certbot iptables-services crontab #nginx开机启动 systemctl enable nginx #启动nginx systemctl restart nginx |
StrongSwan IPsec IKEv2 连接需要用到服务器证书,用于验证服务器身份。由于自签发证书不受操作系统信任,我们需要申请 Let’s Encrypt 免费证书。
申请证书需要有域名,提前将域名解析到你的vps地址。
npm 有两个代理设置,一个是 http 代理,一个是 https 代理。
在命令行设置代理服务器。
1 2 3 4 5 6 |
#获取 http 请求的代理设置 npm config get proxy npm config set proxy="http://127.0.0.1:1080" #获取 https 请求的代理设置 npm config get https-proxy npm config set https-proxy="http://127.0.0.1:1080" |
代理服务器可以使用小灰机(小灰机同时支持 socks 代理和 http 代理)… 阅读全文