<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Proxmox on Commentary of Takao</title><link>https://takao.blog/zh-tw/tags/proxmox/</link><description>Recent content in Proxmox on Commentary of Takao</description><generator>Hugo -- gohugo.io</generator><language>zh-TW</language><copyright>Commentary of Takao</copyright><lastBuildDate>Wed, 15 Jul 2026 22:01:08 +0900</lastBuildDate><atom:link href="https://takao.blog/zh-tw/tags/proxmox/index.xml" rel="self" type="application/rss+xml"/><item><title>Proxmox 備份策略：vzdump、PBS 和災難復原</title><link>https://takao.blog/zh-tw/web/proxmox-backup-disaster-recovery/</link><pubDate>Mon, 20 Jan 2025 00:00:00 +0000</pubDate><guid>https://takao.blog/zh-tw/web/proxmox-backup-disaster-recovery/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-backup-disaster-recovery-zh-tw.png" alt="Featured image of post Proxmox 備份策略：vzdump、PBS 和災難復原" /&gt;&lt;p&gt;備份不是可選的。位元腐爛、意外刪除和勒索軟體都是虛擬機器管理程式儲存的目標。 Proxmox VE 提供兩種備用路徑：內建的 &lt;code&gt;vzdump&lt;/code&gt; 和專用的 Proxmox 備用伺服器 (PBS)。&lt;/p&gt;
&lt;h2 id="為什麼備用很重要"&gt;為什麼備用很重要
&lt;/h2&gt;&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;威脅&lt;/th&gt;
					&lt;th&gt;影響&lt;/th&gt;
					&lt;th&gt;緩解措施&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;位元腐&lt;/td&gt;
					&lt;td&gt;無聲的單位腐敗&lt;/td&gt;
					&lt;td&gt;完整性驗證 (PBS)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;意外刪除&lt;/td&gt;
					&lt;td&gt;VM瞬間遺失&lt;/td&gt;
					&lt;td&gt;保留+異地&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;勒索軟體&lt;/td&gt;
					&lt;td&gt;加密磁碟&lt;/td&gt;
					&lt;td&gt;不可變的異地備份&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="vzdump內建工具"&gt;vzdump：內建工具
&lt;/h2&gt;&lt;p&gt;vzdump 建立虛擬機器和容器的一致備份。對於虛擬機，安裝 Qemu Guest Agent，以便 vzdump 可以在快照之前靜默檔案系統：&lt;/p&gt;</description></item><item><title>Proxmox VE ZFS Storage: Pool 設定, Snapshots, and 優化</title><link>https://takao.blog/zh-tw/web/proxmox-zfs-storage/</link><pubDate>Wed, 14 Aug 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/zh-tw/web/proxmox-zfs-storage/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-zfs-storage-zh-tw.png" alt="Featured image of post Proxmox VE ZFS Storage: Pool 設定, Snapshots, and 優化" /&gt;&lt;h2 id="why-zfs-on-proxmox"&gt;Why ZFS on Proxmox
&lt;/h2&gt;&lt;p&gt;ZFS brings enterprise-grade features to Proxmox VE: data integrity via checksumming (detects and repairs silent corruption), transparent compression, instant snapshots and clones, and flexible RAID-like pooling. It replaces traditional volume management and filesystem layers with a single, unified stack.&lt;/p&gt;
&lt;h2 id="creating-a-pool"&gt;Creating a Pool
&lt;/h2&gt;&lt;p&gt;A pool is built from virtual devices (vdevs). Common vdev types:&lt;/p&gt;
&lt;table&gt;
	&lt;thead&gt;
			&lt;tr&gt;
					&lt;th&gt;Vdev type&lt;/th&gt;
					&lt;th&gt;Minimum disks&lt;/th&gt;
					&lt;th&gt;Usable capacity&lt;/th&gt;
					&lt;th&gt;Description&lt;/th&gt;
			&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
			&lt;tr&gt;
					&lt;td&gt;Mirror&lt;/td&gt;
					&lt;td&gt;2&lt;/td&gt;
					&lt;td&gt;50%&lt;/td&gt;
					&lt;td&gt;Data mirrored across two disks&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ1&lt;/td&gt;
					&lt;td&gt;3&lt;/td&gt;
					&lt;td&gt;67%&lt;/td&gt;
					&lt;td&gt;Single parity (max 1 disk failure)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ2&lt;/td&gt;
					&lt;td&gt;4&lt;/td&gt;
					&lt;td&gt;50%&lt;/td&gt;
					&lt;td&gt;Double parity (max 2 failures)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;RAIDZ3&lt;/td&gt;
					&lt;td&gt;5&lt;/td&gt;
					&lt;td&gt;40%&lt;/td&gt;
					&lt;td&gt;Triple parity (max 3 failures)&lt;/td&gt;
			&lt;/tr&gt;
			&lt;tr&gt;
					&lt;td&gt;Stripe&lt;/td&gt;
					&lt;td&gt;1&lt;/td&gt;
					&lt;td&gt;100%&lt;/td&gt;
					&lt;td&gt;No redundancy (not recommended)&lt;/td&gt;
			&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;Create a mirrored pool:&lt;/p&gt;</description></item><item><title>Proxmox LXC Containers: Complete Management 指南</title><link>https://takao.blog/zh-tw/web/proxmox-lxc-containers/</link><pubDate>Wed, 22 May 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/zh-tw/web/proxmox-lxc-containers/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-lxc-containers-zh-tw.png" alt="Featured image of post Proxmox LXC Containers: Complete Management 指南" /&gt;&lt;h2 id="what-is-lxc"&gt;What is LXC?
&lt;/h2&gt;&lt;p&gt;LXC (Linux Containers) is an OS-level virtualization method that runs multiple isolated Linux systems on a single host using a shared kernel. Unlike full virtual machines, LXC containers share the host OS kernel while maintaining their own filesystem, processes, and network stack. This design makes them extremely lightweight and fast to start.&lt;/p&gt;
&lt;h2 id="lxc-vs-virtual-machines"&gt;LXC vs Virtual Machines
&lt;/h2&gt;&lt;p&gt;The choice between LXC containers and VMs depends on your isolation and performance requirements:&lt;/p&gt;</description></item><item><title>Proxmox VE VM Management: From Creation to 優化</title><link>https://takao.blog/zh-tw/web/proxmox-vm-management/</link><pubDate>Sun, 18 Feb 2024 00:00:00 +0000</pubDate><guid>https://takao.blog/zh-tw/web/proxmox-vm-management/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-vm-management-zh-tw.png" alt="Featured image of post Proxmox VE VM Management: From Creation to 優化" /&gt;&lt;h2 id="creating-a-vm-step-by-step"&gt;Creating a VM Step by Step
&lt;/h2&gt;&lt;p&gt;Proxmox VE provides a guided wizard for VM creation accessible from the web UI at &lt;strong&gt;Create VM&lt;/strong&gt; or via the &lt;code&gt;qm&lt;/code&gt; CLI tool. The wizard walks through eight configuration pages.&lt;/p&gt;
&lt;h3 id="general"&gt;General
&lt;/h3&gt;&lt;p&gt;Set a unique VM ID (an integer, typically starting at 100) and a descriptive name. The name does not affect guest networking — it is purely for identification. Optionally, select a resource pool to organize related VMs.&lt;/p&gt;</description></item><item><title>Proxmox VE Installation and Initial 設定指南</title><link>https://takao.blog/zh-tw/web/proxmox-install-setup/</link><pubDate>Wed, 15 Nov 2023 00:00:00 +0000</pubDate><guid>https://takao.blog/zh-tw/web/proxmox-install-setup/</guid><description>&lt;img src="https://takao.blog/img/thumbnail/proxmox-install-setup-zh-tw.png" alt="Featured image of post Proxmox VE Installation and Initial 設定指南" /&gt;&lt;h2 id="what-is-proxmox-ve"&gt;What is Proxmox VE?
&lt;/h2&gt;&lt;p&gt;Proxmox Virtual Environment (Proxmox VE) is an open-source server virtualization platform that combines KVM-based virtual machines and LXC-based containers under a single web interface. Built on Debian Linux, it integrates enterprise features such as live migration, high availability, software-defined storage, and a built-in firewall. Its agentless design and central management interface make it a popular choice for homelabs, small businesses, and data centers alike.&lt;/p&gt;
&lt;p&gt;The platform supports ZFS, Ceph, and LVM for storage, and includes a RESTful API for automation. The installation process is straightforward, but proper configuration immediately after setup is critical for a stable and secure environment.&lt;/p&gt;</description></item></channel></rss>