分类 技术分享 下的文章

报错信息:run_apparmor_parser: 915 Failed to run apparmor_parser on "/var/lib/lxc/100/apparmor/lxc-100_<-var-lib-lxc>": apparmor_parser: >>lxc-100_</var/lib/lxc><< kann nicht ersetzt werden. Das Profil entspricht nicht dem Protokoll

重新安装 apparmor 即可解决
一键修复脚本:bash <(curl -fsSL down.freenn.com/sh/pve/apparmor.sh)

PVE官方要求,/etc/hosts需要做如下修改:

首先设置hostname,根据实际情况自行修改,我这里设置为freenn

hostnamectl set-hostname freenn

修改/etc/hosts,添加如下内容

127.0.0.1 localhost.localdomain localhost
8.8.8.8 freenn.proxmox.com freenn

8.8.8.8为你服务器公网IP,请自行修改
如果你的hostname设置为freenn,那么必须设置域名为freenn.proxmox.com,同理如果hostname设置为test,则域名为test.proxmox.com

添加安全更新源

echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list

添加仓库密钥

wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg

更新源和系统

apt update && apt dist-upgrade

安装 Proxmox VE

apt -y install proxmox-ve postfix open-iscsi

浏览器登录 WEB 管理页面 https://ip:8006(必须是 HTTPS),管理页面的账号和密码是服务器的账号和密码

PVE官方要求,/etc/hosts需要做如下修改:

首先设置hostname,根据实际情况自行修改,我这里设置为freenn

hostnamectl set-hostname freenn

修改/etc/hosts,添加如下内容

127.0.0.1 localhost.localdomain localhost
8.8.8.8 freenn.proxmox.com freenn

8.8.8.8为你服务器公网IP,请自行修改
如果你的hostname设置为freenn,那么必须设置域名为freenn.proxmox.com,同理如果hostname设置为test,则域名为test.proxmox.com

添加安全更新源

echo "deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription" | sudo tee /etc/apt/sources.list.d/pve-install-repo.list

添加仓库密钥

wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg
sudo mv proxmox-release-bullseye.gpg /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg

更新源和系统

apt update && apt dist-upgrade

安装 Proxmox VE

apt install proxmox-ve postfix open-iscsi

浏览器登录 WEB 管理页面 https://ip:8006(必须是 HTTPS),管理页面的账号和密码是服务器的账号和密码

JS方法-放到JS里面调用

function is_neizhi() {
    var ua = navigator.userAgent.toLowerCase();
    if (ua.match(/MicroMessenger/i) == "micromessenger") {
        return "weixin";
    } else if (ua.match(/QQ/i) == "qq") {
        return "QQ";
    } else if (ua.match(/Alipay/i) == "alipay" && payway == 2) {
        return "alipay";
    }
    return false;
}

由于centos7于2024年7月1日停止维护导致yum都无法使用了,解决方法就是换源

阿里云Centos镜像源地址:https://mirrors.aliyun.com/repo/

修改/etc/yum.repos.d/Centos-Base.repo文件

1)下载阿里yum源 curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

结合自己的Centos版本选择合适的yum源(查看Centos版本命令:cat /etc/Centos-release)

2)清除以前所有的过时的yum缓存

yum clean all

3)重新生成yum缓存

yum makecache