环境

  • VMware Workstation
  • Proxmox VE 7.1

安装PVE就略过了。。。

删除无有效订阅提醒

  1. 登陆PVE后台登陆PVE后台截图
  2. 无有效订阅提醒点掉
    无有效订阅提醒
  3. 选择【数据中心】-【PVE】-【>_Shell】
    打开Shell
  4. 复制命令粘贴到终端
sed -i.backup -z "s/res === null || res === undefined || \!res || res\n\t\t\t.data.status.toLowerCase() \!== 'active'/false/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service

运行命令
运行之后没什么反应,但是注销清空缓存后重新登陆,订阅提醒已经消失了
详细参考链接:https://blog.csdn.net/qq_34667723/article/details/108151518

更换阿里云源

PVE自带Debian的源非常慢,这里换成阿里云的源

  1. 查看Debian的系统版本
cat /proc/version

查看Debian版本截图
我这里版本是Debian 10.2.1-6

  1. 去阿里云查询对应版本的源,地址:https://developer.aliyun.com/mirror/debian

debian 10.x (buster)
编辑/etc/apt/sources.list文件(需要使用sudo), 在文件最前面添加以下条目(操作前请做好相应备份)

deb http://mirrors.aliyun.com/debian/ buster main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster main non-free contrib
deb http://mirrors.aliyun.com/debian-security buster/updates main
deb-src http://mirrors.aliyun.com/debian-security buster/updates main
deb http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster-updates main non-free contrib
deb http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib
deb-src http://mirrors.aliyun.com/debian/ buster-backports main non-free contrib
  1. 备份原有的源
cp /etc/apt/sources.list /etc/apt/sources.list.bak
  1. 编辑/etc/apt/sources.list,改成阿里云的源
vi /etc/apt/sources.list

按键盘“i”编辑,删除原有的内容,粘贴阿里云的源
编辑文件
按“Esc”键,输入“:wq”,保存退出,结束

安装Zerotier

  1. 安装流程

输入安装命令

curl -s https://install.zerotier.com | sudo bash

提示:-bash: sudo: command not found
解决方法

apt-get update
apt-get install sudo

重新输入安装命令即可安装成功

  1. 启动Zerotier
sudo systemctl start zerotier-one.service
  1. 设置开机自启动
sudo systemctl enable zerotier-one.service
  1. 加入网络
zerotier-cli join 8850xxxxxxxxxxxxxxx
  1. 查看网络
zerotier-cli listnetworks

Zerotier常用命令参考https://developer.aliyun.com/article/841146

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐