本文最后更新于 824 天前,其中的信息可能已经有所发展或是发生改变。
介绍
PVE,全称Proxmox Virtual Environment,是基于Debian的Linux系统,虚拟机内核为KVM。硬件兼容性优秀。界面功能不强,很多操作要靠命令行,但扩展能力几乎是无限的。
简单说就是一个虚拟机宿主系统,与之类似的还有ESXI。
准备
1.U盘-需要制作启动盘
2.rufus软件-用于制作启动盘
3.pve镜像
资源下载
rufus-3.19.exe:官网地址 下载地址1 下载地址2
proxmox-ve_7.2-1.iso: 官网地址 下载地址1 下载地址2
pve安装
1.制作镜像
启动refus-3.19,选择U盘,然后选择pve的镜像,然后开始即可,注意会清空U盘的全部数据。
2.设置U盘启动
进入bios设置即可,有些主板默认usb优先级高的也不用设置。
3.安装pve
-
选择一个硬盘格式化储存空间。
-
设置国家地区,能联网的话会自动帮你选择。
-
设置密码,邮箱随意。
-
依次设置网口、主机名、ip、网关、DNS的信息,最好接入一个路由器,设置一个静态ip即可从另外一台机子浏览器访问。
-
点击next后点击install进行安装。
-
安装完毕重启后记得拔掉U盘。
4.配置PVE
以下操作需要在有互联网的环境:
-
根据配置的ip地址访问PVE
https://192.168.1.201:8006/
-
进入pve的shell
-
PVE换国内源,加快访问速度
# 直接复制如下命令进入shell wget https://mirrors.ustc.edu.cn/proxmox/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg echo "#deb https://enterprise.proxmox.com/debian/pve bullseye pve-enterprise" > /etc/apt/sources.list.d/pve-enterprise.list echo "deb https://mirrors.ustc.edu.cn/proxmox/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
-
如果提示没有wget命令就先执行下方命令安装wget
apt install wget
-
Debian换源
mv /etc/apt/sources.list /etc/apt/sources.list.bk nano /etc/apt/sources.list
-
Sources.list加入源
deb http://mirrors.ustc.edu.cn/debian stable main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable main contrib non-free deb http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable-updates main contrib non-free # deb http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free # deb-src http://mirrors.ustc.edu.cn/debian stable-proposed-updates main contrib non-free
-
更新&安装ethtool
apt update apt upgrade -y
-
开启网卡和核显直通
vim /etc/default/grub # 如果命令不存在也可用vi编辑器打开 vi /etc/default/grub # 替换如下内容 GRUB_CMDLINE_LINUX_DEFAULT="intel_iommu=on i915.enable_guc=3 quiet"
案例: