Proxmox VE
Proxmox VE(英語:Proxmox Virtual Environment,通常簡稱為PVE、Proxmox),是一個開源的伺服器虛擬化環境Linux發行版。
Learning Proxmox
Proxmox VE(英語:Proxmox Virtual Environment,通常簡稱為PVE、Proxmox),是一個開源的伺服器虛擬化環境Linux發行版。
Getting started
- Getting Started With Proxmox Backup Server - OSTechNix
- Proxmox Docker Containers Monster - 13000 containers on a single host - Virtualization Howto
- Getting Started With Proxmox (linuxhandbook.com)
- Proxmox Install Beginners Guide - Virtualization Howto
Monitoring
- Pulse - A lightweight monitoring application for Proxmox VE that displays real-time status for VMs and containers via a simple web interface.
Proxmox Datacenter Manager
管理多個 PVE nodes (不是叢集軟體)
- Proxmox Datacenter Manager Beta Documentation - Proxmox VE
- Proxmox Datacenter Manager is an underrated tool for your PVE servers
ProxCenter
類似 vCenter 的管理軟體
HA Cluster
- High-Availability (HA) Proxmox Clusters: Do’s & Don’ts - Virtualization Howto
- I clustered budget-friendly devices into a Proxmox HA lab, and it's more useful than I thought
Advanced Tips
- LACP Network
- ClusterShell - 多 PVE nodes 的管理工具
- sysctl optimization
- 5 Proxmox Management Tools I Use in My Home Lab in 2026 - Virtualization Howto
- Proxmox firewall setup and configuration - Virtualization Howto
- GPU PassThrough
5 common mistakes
- Staying on Enterprise repositories
You should switch to No-Subscription repos after installing PVE - Not keeping backups
Use vzdump when you’re new; switch to PBS once you become a veteran - Forgetting about documentation tools and monitoring services
They are a godsend for troubleshooting - Running mission-critical virtual guests on your experimentation server
High-availability or standalone nodes: Pick your poison - Clustering when you’re a beginner
Unless you have the hardware and skillset, it’s best to avoid clusters
Ceph Storage
Ceph 作為軟體定義的分散式儲存系統,具有高可用性、可平行擴展、無單點失敗、且具有一定自我修復能力等特性。
- Try Microceph for an Easy Ceph Install - Virtualization Howto
- I Built a Ceph Erasure-Coded NVMe Cluster in My Home Lab. Here’s What Actually Happened - Virtualization Howto
- I Bought a 10 Gig Switch to Fix My Proxmox Ceph Cluster and It Changed Everything - Virtualization Howto
- Jumbo frames: Cannot connect to host VMware storage Migration - Virtualization Howto
PECU
PECU - Proxmox Enhanced Configuration Utility
Professional Proxmox VE automation:
- GPU passthrough
- VM templates
- kernel optimization
- enterprise-grade configuration management in one powerful tool.
Tutorials:
- PECU - Proxmox Enhanced Configuration Utility | GPU Passthrough & VM Templates
- Proxmox Enhanced Configuration Utility is just what I needed for my home lab
Proxmox Backup Server
Nested Virtualization
內嵌虛擬化 - 在 Promox 的 VM 安裝另一個虛擬平台,例如 Proxmox、VMware ESXi。
一般用途為:
- 軟體開發與測試
- 學習環境
- 舊系統應用
教學:
- How to Enable Proxmox Nested Virtualization - Virtualization Howto
- Home Lab Nested Virtualization E-book Download - Virtualization Howto
LXC Container
PegaProx
The Ultimate Datacenter Management Solution for Proxmox VE
- PegaProx - The Ultimate Datacenter Management Solution for Proxmox VE
- This Open Source Project Just Killed the Proxmox GUI! - YouTube
Post-Install
Tutorials
- YT: the ULTIMATE Proxmox Guide - Post-Install, ZFS, GPU Passthrough, and more! - YouTube
- Proxmox VE for Beginners Guide with NetBird LXC
- Proxmox Defaults I Leave Alone (And the Ones I Always Change) - Virtualization Howto
Repositories
Disable Enterprise Repositories
local-lvm
Delete local-lvm and Resize local (read warning)
Warning: This assumes a fresh installation without advanced storage settings during the installation, such as ZFS. These steps are only recommended if you have a small boot drive and you need to reclaim space.
- Delete local-lvm manually from web interface under Datacenter > Storage.
- Run the following commands within Node > Shell.
lvremove /dev/pve/data
lvresize -l +100%FREE /dev/pve/root
resize2fs /dev/mapper/pve-root
BIOS
Other Defaults
- VM CPU Type: Host
- Memory ballooning configuration: Disable
FAQ
安裝後無法正常開機
VFS: Unable to mount root fs on unknown-block(0,0)
Solution: 不要使用 Ventoy 方式安裝,改用 ISO 檔直接寫入 USB 方式。
系統突然不能正常開機
開機程序停在這個畫面
Loading Linux 6.17.13 ...
Loading initial ramdisk ...
原因:開機前可能有改過 kernel 的開機參數,不小心導致無法開機。
解決:
- 使用 PVE ISO USB 開機
- 進入 Advanced Options ➜ Rescue Boot
- 修改 GRUB 開機參數
/etc/default/grub
GRUB_TIMEOUT=5 # 0 改成 5, 方便以後管理
GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on iommu=pt" # 移除有問題的參數
套用變更
update-grub
reboot
GPU PassThrough
Tutorials
- Proxmox GPU PassThrough: Step-by-step Guide - Virtualization Howto
- How to Enable GPU Passthrough to LXC Containers in Proxmox - Virtualization Howto
- PCI Passthrough - Proxmox VE
- YT: Proxmox GPU Passthrough for Bazzite Gaming - YouTube
Enable IOMMU
BIOS
proxmox
Node > Shell > Edit: /etc/default/grub
# Should look like this
GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on"
Run the command
update-grub