<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Proxmox &#8211; NhanVPH&#039;s Blog</title>
	<atom:link href="https://blntech.io.vn/tag/proxmox/feed/" rel="self" type="application/rss+xml" />
	<link>https://blntech.io.vn</link>
	<description></description>
	<lastBuildDate>Wed, 06 May 2026 07:01:38 +0000</lastBuildDate>
	<language>vi</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://blntech.io.vn/wp-content/uploads/2026/04/cropped-cropped-Logo-BLN-32x32.jpg</url>
	<title>Proxmox &#8211; NhanVPH&#039;s Blog</title>
	<link>https://blntech.io.vn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Proxmox &#8211; Phần 9 &#8211; Backup Server Sao Lưu Máy Ảo</title>
		<link>https://blntech.io.vn/proxmox-phan-9-backup-server-sao-luu-may-ao/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 06:54:45 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Seri Proxmox]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1821</guid>

					<description><![CDATA[Bài viết hôm nay mình sẽ chia sẻ về&#160;Proxmox Backup Server&#160;– giải pháp sao lưu máy ảo VM và container [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Bài viết hôm nay mình sẽ chia sẻ về&nbsp;<strong>Proxmox Backup Server</strong>&nbsp;– giải pháp sao lưu máy ảo VM và container LXC dành cho nền tảng ảo hóa Proxmox. Đây là công cụ không thể thiếu để bảo đảm an toàn cho hệ thống Proxmox của bạn.</p>



<h2 class="wp-block-heading">1. Giới thiệu Proxmox Backup Server</h2>



<p class="wp-block-paragraph">Proxmox Backup Server (PBS) là giải pháp sao lưu và phục hồi máy ảo VM / LXC Container. Nhờ hỗ trợ tính năng sao lưu từng phần (incremental) và chống trùng lập (deduplicated backups), PBS giúp giảm thiểu tối đa băng thông hệ thống và không gian lưu trữ cho các bản bản backup. Ngoài ra nó còn đang trang bị thêm các tính năng mã hóa giúp bảo đảm an toàn cho cho các bản backup.</p>



<p class="wp-block-paragraph">Proxmox Backup Server là anh em một nhà với Proxmox nên có thể được coi là giáp pháp tốt nhất để sao lưu máy ảo VM và container LXC được thiết lập trên Proxmox. PBS có giao diện web trực quan tương tự như Proxmox giúp việc quản lý tiện lợi hơn.</p>



<h2 class="wp-block-heading">2. Cài đặt PBS</h2>



<p class="wp-block-paragraph">Theo hướng dẫn từ&nbsp;<a href="https://www.proxmox.com/en/proxmox-backup-server/get-started" target="_blank" rel="noreferrer noopener">website chính thức</a>, chúng ta cần tải bản ISO về rồi sau đó tạo Boot USB để cài đặt trực tiếp lên máy chủ. Cách này gọi là bare-metal installation.</p>



<p class="wp-block-paragraph">Mình không muốn cài bare-metal chọn cách cài đặt bằng Docker cho nhanh gọn lẹ. Có thể tận dụng các VPS đang có để làm nơi backup cho Proxmox luôn.</p>



<p class="wp-block-paragraph">Mình sử dụng repo này:&nbsp;<a href="https://github.com/ayufan/pve-backup-server-dockerfiles" target="_blank" rel="noreferrer noopener">https://github.com/ayufan/pve-backup-server-dockerfiles</a></p>



<p class="wp-block-paragraph">Yêu cầu sử dụng máy chủ / máy ảo đã được cài đặt Docker &amp; Docker Compose.</p>



<p class="wp-block-paragraph">Tạo thư mục mới cho PBS và file <code><strong>compose.yml</strong></code></p>



<pre class="wp-block-preformatted"><code>mkdir ~/pbs<br>cd ~/pbs<br>nano compose.yml</code></pre>



<p class="wp-block-paragraph">Nhập vào nội dung sau</p>



<pre class="wp-block-preformatted"><code>services:<br>  pbs:<br>    image: ayufan/proxmox-backup-server:latest<br>    ports:<br>      - 8007:8007<br>    mem_limit: 2G<br>    volumes:<br>      - ./pbs_etc:/etc/proxmox-backup<br>      - ./pbs_logs:/var/log/proxmox-backup<br>      - ./pbs_lib:/var/lib/proxmox-backup<br>      - ./backups:/backups<br>    tmpfs:<br>      - /run<br>    cap_add: <br>      - SYS_RAWIO<br>    devices:<br>      - /dev/sda<br>    restart: unless-stopped<br>    stop_signal: SIGHUP</code></pre>



<p class="wp-block-paragraph">Kích hoạt Proxmox Backup Server</p>



<pre class="wp-block-preformatted"><code>docker compose up -d</code></pre>



<p class="wp-block-paragraph">Truy cập vào PBS ở địa chỉ </p>



<pre class="wp-block-preformatted"><code>https://&lt;IP>:8007</code></pre>



<h2 class="wp-block-heading">3. Đăng nhập PBS</h2>



<p class="wp-block-paragraph">Ở lần đăng nhập đầu tiên, sử dụng thông tin mặc định như sau</p>



<ul class="wp-block-list">
<li>Username: <code><strong>admin</strong></code></li>



<li>Password: <code><strong>pbspbs</strong></code></li>



<li>Realm: Proxmox Backup authentication server</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img fetchpriority="high" decoding="async" width="858" height="452" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-490.png" alt="" class="wp-image-5862" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-490.png 858w, https://blntech.io.vn/wp-content/uploads/2025/07/image-490-300x158.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-490-768x405.png 768w" sizes="(max-width: 858px) 100vw, 858px" /></figure>



<p class="wp-block-paragraph">Sau khi đăng nhập, mình sẽ truy cập vào mục Access Control, bấm nút Add để tạo tài khoản mới</p>



<figure class="wp-block-image aligncenter size-large"><img decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-491-1024x681.png" alt="" class="wp-image-5863" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-491-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-491-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-491-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-491-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-491.png 2000w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tiếp theo, chuyển qua tab Permission, nhất nút Add để cấp quyền admin cho tài khoản vừa tạo.</p>



<figure class="wp-block-image aligncenter size-large"><img decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-492-1024x681.png" alt="" class="wp-image-5864" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-492-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-492-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-492-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-492-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-492.png 2000w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tiếp theo, thoát khỏi tài khoản admin, đăng nhập vào tài khoản mới. Sau đó xóa tài khoản admin đi để tối ưu bảo mật.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-493-1024x681.png" alt="" class="wp-image-5865" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-493-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-493-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-493-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-493-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-493.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">4. Tạo Datastore trên PBS</h2>



<p class="wp-block-paragraph">Bấm vào nút Add Datastore ở menu bên trái, sau đó nhập vào thông tin như hình. Backing Path: <code><strong>/backups</strong></code> là đường dẫn đã được khai báo ở dòng 11 trong file <code><strong>compose.yml</strong></code> ở bước 2.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-494-1024x681.png" alt="" class="wp-image-5866" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-494-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-494-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-494-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-494-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-494.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Datastore mới với tên gọi backups đã hiện ra trong giao diện quản lý của Proxmox Backup Server.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-495-1024x681.png" alt="" class="wp-image-5867" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-495-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-495-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-495-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-495-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-495.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bấm vào nút Show Connection Information để xem thông tin chi tiết về datastore này. Thông tin hiện ra sẽ được dùng để cấu hình Storage trên Proxmox ở bước kế tiếp.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="468" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-496-1024x468.png" alt="" class="wp-image-5868" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-496-1024x468.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-496-300x137.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-496-768x351.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-496.png 1204w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">5. Tạo Storage mới trên Proxmox</h2>



<p class="wp-block-paragraph">Truy cập vào Proxmox, chọn mục Datacenter –&gt; Storage, bấm nút Add và chọn Proxmox Backup Server</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-497-1024x681.png" alt="" class="wp-image-5869" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-497-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-497-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-497-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-497-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-497.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Nhập vào thông tin của Proxmox Backup Server đã hiển thị ở bước 4.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="535" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-498-1024x535.png" alt="" class="wp-image-5870" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-498-1024x535.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-498-300x157.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-498-768x401.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-498.png 1198w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau khi hoàn thành, bạn sẽ thấy ở menu bên trái của Proxmox xuất hiện thêm một khu vực lưu trữ mới.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-499-1024x681.png" alt="" class="wp-image-5871" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-499-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-499-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-499-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-499-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-499.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">6. Sao lưu máy ảo lên PBS</h2>



<p class="wp-block-paragraph">Tham khảo bài viết : <a href="https://blntech.io.vn/proxmox-phan-7-sao-luu-va-phuc-hoi-may-ao-vm-container-lxc/" data-type="post" data-id="1799" target="_blank" rel="noreferrer noopener"><strong>Hướng dẫn sao lưu / phục hồi máy ảo / container</strong></a></p>



<p class="wp-block-paragraph">Trong trường hợp bạn chọn sao lưu lên PBS thì sau khi thành công, bên Promox Backup Server sẽ hiện ra thông tin các bản backup vừa mới được tải lên từ Proxmox.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-500-1024x681.png" alt="" class="wp-image-5872" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-500-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-500-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-500-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-500-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-500.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chúc bạn thực hiện thành công!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Phần 8 &#8211; Cài Đặt Tự Động Ứng Dụng LXC Với Proxmox VE Helper-Scripts</title>
		<link>https://blntech.io.vn/proxmox-phan-8-cai-dat-tu-dong-ung-dung-lxc-voi-proxmox-ve-helper-scripts/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 06:09:41 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Seri Proxmox]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1774</guid>

					<description><![CDATA[Giới thiệu Proxmox VE Helper Script Proxmox VE Helper Scripts được phát triển nhằm đơn giản hóa việc cài đặt các [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"></p>



<h2 class="wp-block-heading">Giới thiệu Proxmox VE Helper Script</h2>



<p class="wp-block-paragraph"><a href="https://github.com/community-scripts/ProxmoxVE" target="_blank" rel="noreferrer noopener">Proxmox VE Helper Scripts</a> được phát triển nhằm đơn giản hóa việc cài đặt các ứng dụng mã nguồn mở trên nền tảng Proxmox VE. Trang github của dự án này có hơn 14.000 stars, cho thấy sự tin cậy của nó với các tín đồ homelab.</p>



<p class="wp-block-paragraph">Hiện tại đang có 323 scripts cài đặt, được chia làm nhiều danh mục khác nhau để bạn tha hồ khám phá</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="649" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-485-1024x649.png" alt="" class="wp-image-5850" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-485-1024x649.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-485-300x190.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-485-768x487.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-485-1536x974.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-485.png 1673w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">Cài đặt ứng dụng bằng script</h2>



<p class="wp-block-paragraph">Đa số các ứng dụng sẽ được cài đặt bằng cách tạo 1 LXC Container mới và thiết lập trực tiếp trên đó.</p>



<p class="wp-block-paragraph">Tùy thuộc từng script mà chúng ta sẽ chạy script trên Shell của Proxmox hoặc trên shell của LXC. Cần đọc hướng dẫn đi kèm để làm cho đúng</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="948" height="724" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-486.png" alt="" class="wp-image-5851" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-486.png 948w, https://blntech.io.vn/wp-content/uploads/2025/07/image-486-300x229.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-486-768x587.png 768w" sizes="auto, (max-width: 948px) 100vw, 948px" /></figure>



<p class="wp-block-paragraph">Ví dụ: mình muốn cài Sonarr, sẽ cần chạy script này trên Shell của Proxmox VE host.</p>



<pre class="wp-block-preformatted"><code>bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/sonarr.sh)"</code></pre>



<p class="wp-block-paragraph">Chọn Yes để tiếp tục</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="605" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-487-1024x605.png" alt="" class="wp-image-5852" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-487-1024x605.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-487-300x177.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-487-768x453.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-487-1536x907.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-487.png 1582w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Phần tiếp theo, có thể chọn Yes để cài đặt theo các thông số mặc định. Ai muốn cấu hình phức tạp thì chọn Advanced.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="608" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-488-1024x608.png" alt="" class="wp-image-5853" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-488-1024x608.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-488-300x178.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-488-768x456.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-488-1536x912.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-488.png 1584w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Quá trình cài đặt khoảng 3-5′ tùy theo ứng dụng. Sau khi cài đặt xong, bạn sẽ thấy hiện ra thông báo như bên dưới.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="621" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-489-1024x621.png" alt="" class="wp-image-5854" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-489-1024x621.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-489-300x182.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-489-768x466.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-489-1536x932.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-489.png 1582w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Truy cập theo địa chỉ <code><strong>http://192.168.0.105:8989</strong></code> để sử dụng Sonarr.</p>



<p class="wp-block-paragraph">Mò chán thì quay lại Proxmox, xóa LXC vừa tạo. Sau đó mò qua script mới. Tất cả đều diễn ra nhanh chóng, gọn lẹ, tiết kiệm được rất nhiều thời gian.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Phần 7 &#8211; Sao Lưu Và Phục Hồi Máy Ảo VM / Container LXC</title>
		<link>https://blntech.io.vn/proxmox-phan-7-sao-luu-va-phuc-hoi-may-ao-vm-container-lxc/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 04:46:29 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Seri Proxmox]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1799</guid>

					<description><![CDATA[Bài viết lần này sẽ hướng dẫn các bạn cách sao lưu (backup) / phục hồi (restore) cho máy ảo [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Bài viết lần này sẽ hướng dẫn các bạn cách sao lưu (backup) / phục hồi (restore) cho máy ảo VM và container LXC trên Proxmox.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Hướng dẫn sao lưu và phục hồi máy ảo / container trên Promxox" width="1200" height="675" src="https://www.youtube.com/embed/CwSjoL29uus?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">1. Sao lưu riêng lẻ</h2>



<p class="wp-block-paragraph">Cách này được dùng khi bạn cần tạo 1 bản sao lưu ngay lập tức cho máy ảo hoặc container.</p>



<ol class="wp-block-list">
<li>Bấm chọn máy ảo / container cần sao lưu</li>



<li>Chọn mục Backup</li>



<li>Bấm nút Backup now</li>



<li>Cấu hình thông số</li>
</ol>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="541" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-479-1024x541.png" alt="" class="wp-image-5841" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-479-1024x541.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-479-300x159.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-479-768x406.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-479-1536x812.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-479.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau đó bấm nút Backup để tiến hành sao lưu.</p>



<h2 class="wp-block-heading">2. Lên lịch sao lưu VM / LXC</h2>



<p class="wp-block-paragraph">Trong trường hợp cần sao lưu tự động cho máy ảo / container, chúng ta cần phải sử dụng tính năng lịch sao lưu của Proxmox.</p>



<p class="wp-block-paragraph">Truy cập vào phần Datacenter –&gt; Backup, bấm nút Add để tạo lịch sao lưu mới.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="541" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-480-1024x541.png" alt="" class="wp-image-5842" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-480-1024x541.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-480-300x159.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-480-768x406.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-480-1536x812.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-480.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Trong bảng cấu hình Backup Job, thiết lập thông số theo nhu cầu của bạn</p>



<ul class="wp-block-list">
<li>Storage: chọn nơi bạn muốn lưu trữ bản backup</li>



<li>Schedule: chọn lịch sao lưu tùy theo nhu cầu của bạn</li>



<li>Selection mode: Include selected VM, sau đó chọn các VM, LXC cần sao lưu</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="934" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-481-1024x934.png" alt="" class="wp-image-5843" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-481-1024x934.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-481-300x274.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-481-768x701.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-481.png 1438w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bấm qua tab Retention để cấu hình số lượng lượt sao lưu cần lưu trữ. Mình chọn Keep Last: 10, nghĩa là sẽ lưu trữ 10 bản sao lưu gần nhất, các bản cũ hơn sẽ tự động bị xóa.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="380" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-482-1024x380.png" alt="" class="wp-image-5844" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-482-1024x380.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-482-300x111.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-482-768x285.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-482.png 1428w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau khi tạo xong, có thể bấm vào nút Run now để cho nó thực thi tác vụ ngay lập tức.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-483-1024x681.png" alt="" class="wp-image-5845" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-483-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-483-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-483-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-483-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-483.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tùy vào dung lượng của VM / LXC mà thời gian sao lưu sẽ dài ngắn khác nhau. Sau khi hoàn thành, bạn sẽ thấy bản backup hiện ra trong mục lưu trữ.</p>



<h2 class="wp-block-heading">3. Phục hồi VM / LXC từ bản sao lưu</h2>



<p class="wp-block-paragraph">Thao tác theo các bước sau để phục hồi lại VM / LXC từ bản sao lưu</p>



<ol class="wp-block-list">
<li>Truy cập vào phần Storage</li>



<li>Chọn Backups</li>



<li>Chọn bản sao lưu cần phục hồi</li>



<li>Bấm nút Resotre</li>



<li>Tùy chỉnh thông số sau đó bấm nút Restore</li>
</ol>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="681" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-484-1024x681.png" alt="" class="wp-image-5846" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-484-1024x681.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-484-300x200.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-484-768x511.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-484-1536x1021.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-484.png 2000w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Nếu bản backup được lưu trong local storage thì thời gian phục hồi sẽ rất nhanh chóng. Nếu bản backup được lưu trên cloud thì sẽ tốn thêm thời gian tải bản backup về và phục hồi lại trên hệ thống.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Cài Đặt Máy Ảo KVM Linux</title>
		<link>https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-linux/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 03:42:42 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Proxmox]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1809</guid>

					<description><![CDATA[Tiếp tục với loạt bài về Proxmox, bài viết lần này sẽ hướng dẫn bạn cách cài đặt máy ảo KVM [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Tiếp tục với loạt bài về <a href="https://blntech.io.vn/tag/proxmox/" data-type="link" data-id="https://blntech.io.vn/tag/proxmox/" target="_blank" rel="noreferrer noopener">Proxmox</a>, bài viết lần này sẽ hướng dẫn bạn cách cài đặt máy ảo KVM chạy Linux trên Proxmox VE.</p>



<p class="wp-block-paragraph">Mình sẽ cài đặt hệ điều hành Debian 11. Bạn có thể áp dụng tương tự để cài đặt các phiên bản Linux khác: Ubuntu, Arch, Fedora,…</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Hướng dẫn tạo máy ảo Linux trên Proxmox" width="1200" height="675" src="https://www.youtube.com/embed/SrA6UGug9Iw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">I. Upload ISO lên Proxmox</h2>



<p class="wp-block-paragraph">Trước khi thiết lập máy ảo, bạn cần phải tải file ISO cài đặt Debian 11 lên Proxmox.</p>



<p class="wp-block-paragraph">Truy cập vào <a href="https://blntech.io.vn/proxmox-phan-2-lam-quen-voi-giao-dien-quan-ly-web-ui/" data-type="post" data-id="1812" target="_blank" rel="noreferrer noopener">giao diện web của Proxmox</a>, bấm chọn local bên mục Resource Tree, chọn tiếp ISO Images, sau đó bấm nút Upload hoặc Download from URL</p>



<ul class="wp-block-list">
<li>Upload: tải ISO từ máy tính của bạn</li>



<li>Download from URL: tải file ISO trực tiếp từ Internet.</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="868" height="516" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-464.png" alt="" class="wp-image-5822" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-464.png 868w, https://blntech.io.vn/wp-content/uploads/2025/07/image-464-300x178.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-464-768x457.png 768w" sizes="auto, (max-width: 868px) 100vw, 868px" /></figure>



<p class="wp-block-paragraph">Sau khi tải xong, file ISO cài đặt Debian sẽ có mặt trong mục ISO Images</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="268" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-465-1024x268.png" alt="" class="wp-image-5823" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-465-1024x268.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-465-300x79.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-465-768x201.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-465.png 1130w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">II. Tạo máy ảo KVM cho Debian 11</h2>



<p class="wp-block-paragraph">Bấm vào nút Create VM trên Header của Proxmox để bắt đầu quy trình tạo máy ảo.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-466-1024x668.png" alt="" class="wp-image-5824" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-466-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-466-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-466-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-466.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">1. General – Thông tin chung</h3>



<ul class="wp-block-list">
<li>Node: chọn host Proxmox bạn muốn cài đặt máy ảo</li>



<li>VM ID: giữ nguyên mặc định hay thay đổi tuỳ thích</li>



<li>Name: debian-11</li>
</ul>



<p class="wp-block-paragraph">Bấm Next để tiếp tục</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="743" height="533" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-467.png" alt="" class="wp-image-5825" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-467.png 743w, https://blntech.io.vn/wp-content/uploads/2025/07/image-467-300x215.png 300w" sizes="auto, (max-width: 743px) 100vw, 743px" /></figure>



<h3 class="wp-block-heading">2. OS – Hệ điều hành</h3>



<ul class="wp-block-list">
<li>Bấm chọn Use CD/DVD disc image file (iso)
<ul class="wp-block-list">
<li>Storage: chọn local</li>



<li>ISO Images: chọn file ISO debian đã tải ở bước trước đó</li>
</ul>
</li>



<li>Guest OS:
<ul class="wp-block-list">
<li>Type: Linux</li>



<li>Version: 5.x – 2.6 Kernel</li>
</ul>
</li>
</ul>



<p class="wp-block-paragraph">Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="740" height="529" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-468.png" alt="" class="wp-image-5826" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-468.png 740w, https://blntech.io.vn/wp-content/uploads/2025/07/image-468-300x214.png 300w" sizes="auto, (max-width: 740px) 100vw, 740px" /></figure>



<h3 class="wp-block-heading">3. System – Hệ thống</h3>



<ul class="wp-block-list">
<li>Graphic card: Default</li>



<li>Machine: Default (i440fx)</li>



<li>BIOS: Default (SeaBIOS)</li>



<li>SCSI: chọn VirtIO SCSI</li>
</ul>



<p class="wp-block-paragraph">Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="752" height="538" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-469.png" alt="" class="wp-image-5827" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-469.png 752w, https://blntech.io.vn/wp-content/uploads/2025/07/image-469-300x215.png 300w" sizes="auto, (max-width: 752px) 100vw, 752px" /></figure>



<h3 class="wp-block-heading">4. Hard Disk – Ổ đĩa cứng</h3>



<ul class="wp-block-list">
<li>Bus/Device: chọn SCSI</li>



<li>Cache: Default (No cache)</li>



<li>Storage: chọn local-lvm</li>



<li>Disk size (GB): 20GB hoặc lớn hơn</li>



<li>Discard: tick chọn</li>
</ul>



<p class="wp-block-paragraph">Bấm Next để tiếp tục</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="747" height="530" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-470.png" alt="" class="wp-image-5828" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-470.png 747w, https://blntech.io.vn/wp-content/uploads/2025/07/image-470-300x213.png 300w" sizes="auto, (max-width: 747px) 100vw, 747px" /></figure>



<h3 class="wp-block-heading">5. CPU</h3>



<p class="wp-block-paragraph">Tuỳ theo nhu cầu sử dụng mà bạn chọn vCPU cho phù hợp, mình chọn 1 Core.</p>



<ul class="wp-block-list">
<li>Sockets: 1</li>



<li>Cores: 1</li>



<li>Type: Default (kvm64)</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="747" height="532" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-471.png" alt="" class="wp-image-5829" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-471.png 747w, https://blntech.io.vn/wp-content/uploads/2025/07/image-471-300x214.png 300w" sizes="auto, (max-width: 747px) 100vw, 747px" /></figure>



<h3 class="wp-block-heading">6. Memory – Bộ nhớ</h3>



<p class="wp-block-paragraph">Chọn ít nhất 1 GB (1024 MB). Mình chọn 2 GB (2048)</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="747" height="532" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-472.png" alt="" class="wp-image-5830" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-472.png 747w, https://blntech.io.vn/wp-content/uploads/2025/07/image-472-300x214.png 300w" sizes="auto, (max-width: 747px) 100vw, 747px" /></figure>



<h3 class="wp-block-heading">7. Network – Mạng</h3>



<ul class="wp-block-list">
<li>Model: chọn VirtIO (paravirtualized)</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="746" height="529" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-473.png" alt="" class="wp-image-5831" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-473.png 746w, https://blntech.io.vn/wp-content/uploads/2025/07/image-473-300x213.png 300w" sizes="auto, (max-width: 746px) 100vw, 746px" /></figure>



<h3 class="wp-block-heading">8. Confim – Xác nhận</h3>



<p class="wp-block-paragraph">Kiểm tra lại thông tin lần cuối, bấm chọn Start after created và bấm Finish để tạo máy ảo mới.</p>



<p class="wp-block-paragraph">Máy ảo sẽ tự động kích hoạt sau khi tạo xong.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="752" height="537" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-474.png" alt="" class="wp-image-5832" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-474.png 752w, https://blntech.io.vn/wp-content/uploads/2025/07/image-474-300x214.png 300w" sizes="auto, (max-width: 752px) 100vw, 752px" /></figure>



<h2 class="wp-block-heading">III. Cài đặt hệ điều hành</h2>



<p class="wp-block-paragraph">Truy cập vào mục Console của máy ảo Linux vừa tạo để tiến hành các bước cài đặt hệ điều hành.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="607" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-475-1024x607.png" alt="" class="wp-image-5833" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-475-1024x607.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-475-300x178.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-475-768x455.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-475.png 1459w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">IV. Cài đặt và kích hoạt QEMU Guest Agent</h2>



<p class="wp-block-paragraph">Sau khi cài đặt xong Linux trên máy ảo, bạn cần cài đặt thêm Guest Agent</p>



<pre class="wp-block-preformatted"><code>apt-get install qemu-guest-agent</code></pre>



<p class="wp-block-paragraph">Nếu bạn cài đặt CentOS / Rocky Linux hay các bản Linux trên nền Redhat, sử dụng lệnh sau</p>



<pre class="wp-block-preformatted"><code>yum install qemu-guest-agent</code></pre>



<p class="wp-block-paragraph">Sau đó tắt máy ảo và truy cập vào mục Options để kích hoạt tính năng QEMU Guest Agent.</p>



<p class="wp-block-paragraph">Double click vào mục QEMU Guest</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="486" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-476-1024x486.png" alt="" class="wp-image-5834" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-476-1024x486.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-476-300x143.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-476-768x365.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-476.png 1244w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bấm chọn Use QEMU Guest Agent và bấm OK để xác nhận.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="371" height="199" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-477.png" alt="" class="wp-image-5835" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-477.png 371w, https://blntech.io.vn/wp-content/uploads/2025/07/image-477-300x161.png 300w" sizes="auto, (max-width: 371px) 100vw, 371px" /></figure>



<p class="wp-block-paragraph">Sau khi kích hoạt QEMU Guest Agent, bạn khởi động lại máy ảo. Thông tin CPU Usage, Memory Usage, IPs của máy ảo sẽ hiển thị trong mục Summary của Proxmox.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="684" height="411" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-478.png" alt="" class="wp-image-5836" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-478.png 684w, https://blntech.io.vn/wp-content/uploads/2025/07/image-478-300x180.png 300w" sizes="auto, (max-width: 684px) 100vw, 684px" /></figure>



<p class="wp-block-paragraph">Vậy là xong. Bạn đã có trong tay 1 máy ảo Linux trên Proxmox để thoải mái nghiên cứu</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Cài Đặt Máy Ảo KVM Chạy Windows 11</title>
		<link>https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-chay-windows-11/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 02:01:54 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 11]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1795</guid>

					<description><![CDATA[Bài viết này sẽ hướng dẫn bạn các cài đặt máy ảo Windows 11 trên Proxmox. Cách thức gần như [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Bài viết này sẽ hướng dẫn bạn các cài đặt máy ảo Windows 11 trên Proxmox. Cách thức gần như tương tự cách <a href="https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-windows-10/" data-type="post" data-id="1918" target="_blank" rel="noreferrer noopener">cài đặt Windows 10</a>, nhưng có đôi chút thay đổi ở phần thiết lập máy ảo ban đầu.</p>



<p class="wp-block-paragraph">Từ phiên bản 7.0-13, Proxmox đã bổ sung tính năng ảo hoá TPM 2.0 cho phép cài đặt Windows 11 lên máy ảo KVM trơn tru mà không cần thực hiện bất kỳ thủ thuật phức tạp nào. Do đó, yêu cầu bạn phải đang sử dụng Proxmox phiên bản 7.0-13 hoặc mới hơn thì mới thực hiện được các thao tác hướng dẫn bên dưới.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Hướng dẫn thiết lập và cài đặt Windows 11 trên máy ảo Proxmox" width="1200" height="675" src="https://www.youtube.com/embed/9k98Tb77RZo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">I. Upload ISO lên Proxmox</h2>



<p class="wp-block-paragraph">Thay ISO của Windows 10 bằng ISO 11.</p>



<p class="wp-block-paragraph">VirtIO Driver của Windows 10 vẫn dùng được cho Windows 11 nên chúng ta sẽ vẫn dùng file <a href="https://soft.blntech.io.vn/?cat=ISO+Windows+-+Linux+-+MacOS&amp;app=VirtIO+ISO" data-type="link" data-id="https://soft.blntech.io.vn/?cat=ISO+Windows+-+Linux+-+MacOS&amp;app=VirtIO+ISO" target="_blank" rel="noreferrer noopener">VirtIO ISO</a> như cũ.</p>



<h2 class="wp-block-heading">II. Tạo máy ảo Windows 11</h2>



<p class="wp-block-paragraph">Các bạn thao tác theo hướng dẫn cách tạo máy ảo Windows 10 ở đây: <a href="https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-windows-10/" data-type="post" data-id="1918" target="_blank" rel="noreferrer noopener">Proxmox – Cài Đặt Máy Ảo KVM Windows 10</a>, nhưng chú ý ở phần System, cần tích chọn vào ô TPM.</p>



<p class="wp-block-paragraph">Bấm chọn vào ô Advanced ở góc phải bên dưới để hiện ra thông số nâng cao.</p>



<ul class="wp-block-list">
<li>BIOS: chọn OVMF (UEFI)</li>



<li>EFI Storage: chọn storage tương ứng</li>



<li>Add TPM: tick chọn</li>



<li>TPM Storage: chọn storage tương ứng</li>



<li>Version: v2.0</li>
</ul>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-461-1024x729.png" alt="" class="wp-image-5814" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-461-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-461-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-461-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-461.png 1110w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Các bước còn lại làm y hệt như bên Windows 10.</p>



<h2 class="wp-block-heading">III. Cài đặt Windows 11</h2>



<p class="wp-block-paragraph">Bước cài đặt Windows 11 bạn làm theo từ bước III trở đi trong bài hướng dẫn Windows 10 là xong: <a href="https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-windows-10/" data-type="post" data-id="1918" target="_blank" rel="noreferrer noopener">Proxmox – Cài Đặt Máy Ảo KVM Windows 10</a></p>



<p class="wp-block-paragraph">Ở bước cấu hình, Windows 11 sẽ yêu cầu kết nối Internet để tiếp tục. Tuy nhiên do máy ảo hiện chưa có driver cho card mạng nên sẽ không thể kết nối. Chúng ta cần bấm Shift + F10 để mở CMD, sau đó gõ lệnh</p>



<pre class="wp-block-code"><code>OOBE\BYPASSNRO</code></pre>



<p class="wp-block-paragraph">Hệ thống sẽ tự động khởi động lại, và ở bước thiết lập, bấm vào I don’t have internet để tiếp tục.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="637" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-462-1024x637.png" alt="" class="wp-image-5815" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-462-1024x637.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-462-300x187.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-462-768x478.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-462.png 1160w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tiếp tục các bước cài đặt như bình thường.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="768" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-463-1024x768.png" alt="" class="wp-image-5816" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-463-1024x768.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-463-300x225.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-463-768x576.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-463-1536x1152.png 1536w, https://blntech.io.vn/wp-content/uploads/2025/07/image-463.png 1538w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chúc bạn cài đặt thành công!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn : thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Cài Đặt Máy Ảo KVM Windows 10</title>
		<link>https://blntech.io.vn/proxmox-cai-dat-may-ao-kvm-windows-10/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 06 May 2026 01:35:31 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 10]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1918</guid>

					<description><![CDATA[Để máy ảo Windows 10 hoạt động với hiệu năng tốt nhất, chúng ta cần phải cài đặt&#160;Windows VirtIO Drivers&#160;trong [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Để máy ảo Windows 10 hoạt động với hiệu năng tốt nhất, chúng ta cần phải cài đặt&nbsp;<a href="https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers" target="_blank" rel="noreferrer noopener">Windows VirtIO Drivers</a>&nbsp;trong quá trình cài đặt Windows. Chi tiết cách thiết lập và cài đặt Windows 10 lên máy ảo, bạn thao tác theo các bước hướng dẫn dưới đây.</p>



<h2 class="wp-block-heading">I. Upload ISO lên Proxmox</h2>



<p class="wp-block-paragraph">Trước khi thiết lập máy ảo, bạn cần phải tải file ISO cài đặt Windows 10 và VirtIO ISO (dùng để cài đặt driver) lên Proxmox.</p>



<h3 class="wp-block-heading">1. Upload Windows 10 ISO</h3>



<p class="wp-block-paragraph">Truy cập vào&nbsp;<a href="https://blntech.io.vn/proxmox-phan-2-lam-quen-voi-giao-dien-quan-ly-web-ui/" data-type="post" data-id="1812" target="_blank" rel="noreferrer noopener">giao diện web của Proxmox</a>, bấm chọn local bên mục Resource Tree, chọn tiếp ISO Images, sau đó bấm nút Upload.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="868" height="516" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-434.png" alt="" class="wp-image-5781" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-434.png 868w, https://blntech.io.vn/wp-content/uploads/2025/07/image-434-300x178.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-434-768x457.png 768w" sizes="auto, (max-width: 868px) 100vw, 868px" /></figure>



<p class="wp-block-paragraph">Chọn file ISO cài đặt Windows 10 trên máy tính, sau đó bấm nút Upload để tải file lên Proxmox. Tuỳ theo tốc độ mạng, thời gian sẽ kéo dài trong khoảng 5-10 phút.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="445" height="312" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-435.png" alt="" class="wp-image-5782" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-435.png 445w, https://blntech.io.vn/wp-content/uploads/2025/07/image-435-300x210.png 300w" sizes="auto, (max-width: 445px) 100vw, 445px" /></figure>



<h3 class="wp-block-heading">2. Upload VirtIO ISO</h3>



<p class="wp-block-paragraph">Bạn có thể tải trực tiếp VirtIO ISO từ Internet bằng cách bấm vào nút Download from URL, bên cạnh nút Upload. Sau đó nhập vào URL của VirtIO ISO: <a href="https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso">https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso</a> hoặc tải file trực tiếp <a href="https://soft.blntech.io.vn/?cat=ISO+Windows+-+Linux+-+MacOS&amp;app=VirtIO+ISO" data-type="link" data-id="https://soft.blntech.io.vn/?cat=ISO+Windows+-+Linux+-+MacOS&amp;app=VirtIO+ISO" target="_blank" rel="noreferrer noopener">link dự phòng</a>, bấm Query URL.</p>



<p class="wp-block-paragraph">Kích thước file là 515.94 MB. Bấm Download để Proxmox tải file về.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="634" height="238" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-436.png" alt="" class="wp-image-5783" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-436.png 634w, https://blntech.io.vn/wp-content/uploads/2025/07/image-436-300x113.png 300w" sizes="auto, (max-width: 634px) 100vw, 634px" /></figure>



<p class="wp-block-paragraph">Sau khi tải xong file ISO, bạn sẽ thấy chúng xuất hiện trong mục ISO Images.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="268" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-437-1024x268.png" alt="" class="wp-image-5784" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-437-1024x268.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-437-300x79.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-437-768x201.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-437.png 1130w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">II. Tạo máy ảo Windows 10</h2>



<p class="wp-block-paragraph">Bấm vào nút Create VM trên Header của Proxmox để bắt đầu quy trình tạo máy ảo.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-438-1024x668.png" alt="" class="wp-image-5785" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-438-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-438-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-438-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-438.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">1. General – Thông tin chung</h3>



<ul class="wp-block-list">
<li>Node: chọn host Proxmox bạn muốn cài đặt máy ảo</li>



<li>VM ID: giữ nguyên mặc định hay thay đổi tuỳ thích</li>



<li>Name: Windows10</li>
</ul>



<p class="wp-block-paragraph">Bấm Next để tiếp tục</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-439.png" alt="" class="wp-image-5786" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-439.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-439-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">2. OS – Hệ điều hành</h3>



<ul class="wp-block-list">
<li>Bấm chọn Use CD/DVD disc image file (iso)
<ul class="wp-block-list">
<li>Storage: chọn local</li>



<li>ISO Images: chọn file ISO Windows đã tải ở bước trước đó</li>
</ul>
</li>



<li>Guest OS:
<ul class="wp-block-list">
<li>Type: Microsoft Windows</li>



<li>Version: 10/2016/2019</li>
</ul>
</li>
</ul>



<p class="wp-block-paragraph">Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-440.png" alt="" class="wp-image-5787" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-440.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-440-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">3. System – Hệ thống</h3>



<ul class="wp-block-list">
<li>Graphic card: Default</li>



<li>SCSI: chọn VirtIO SCSI</li>



<li>Qemu Agent: tick chọn</li>
</ul>



<p class="wp-block-paragraph">Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-441.png" alt="" class="wp-image-5788" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-441.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-441-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">4. Hard Disk – Ổ đĩa cứng</h3>



<ul class="wp-block-list">
<li>Bus/Device: chọn SCSI</li>



<li>Cache: chọn Write back</li>



<li>Storage: chọn local-lvm</li>



<li>Disk size (GB): 32GB hoặc lớn hơn</li>



<li>Discard: tick chọn</li>
</ul>



<p class="wp-block-paragraph">Bấm Next để tiếp tục</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-442.png" alt="" class="wp-image-5789" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-442.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-442-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">5. CPU</h3>



<p class="wp-block-paragraph">Tuỳ theo cấu hình máy chủ mà bạn chọn vCPU cho phù hợp, khuyến khích nên chọn 2 Cores trở lên</p>



<ul class="wp-block-list">
<li>Sockets: 1</li>



<li>Cores: 2</li>



<li>Type: Default (kvm64)</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-443.png" alt="" class="wp-image-5790" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-443.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-443-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">6. Memory – Bộ nhớ</h3>



<p class="wp-block-paragraph">Chọn ít nhất 4 GB (4096 MB). Mình chọn luôn 8 GB (8192)</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-444.png" alt="" class="wp-image-5791" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-444.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-444-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">7. Network – Mạng</h3>



<ul class="wp-block-list">
<li>Model: chọn VirtIO (paravirtualized)</li>
</ul>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-445.png" alt="" class="wp-image-5792" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-445.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-445-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h3 class="wp-block-heading">8. Confim – Xác nhận</h3>



<p class="wp-block-paragraph">Kiểm tra lại thông tin lần cuối và bấm Finish để tạo máy ảo mới.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="520" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-446.png" alt="" class="wp-image-5793" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-446.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-446-300x220.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h2 class="wp-block-heading">III. Tạo thêm ổ CD/DVD cho máy ảo</h2>



<p class="wp-block-paragraph">Sau khi tạo xong máy ảo mới, bạn cần truy cập vào phần Hardward để tạo thêm 1 ổ CD/DVD cho nó. Bạn cần 2 ổ CD/DVD vì 1 ổ sẽ dùng cho file ISO cài đặt, cái còn lại sẽ dùng cho VirtIO ISO.</p>



<ol class="wp-block-list">
<li>Bấm chọn máy ảo Windows10 bên Resource Trê</li>



<li>Chọn Hardward</li>



<li>Bấm Add</li>



<li>Chọn CD/DVD Drive</li>
</ol>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-447-1024x668.png" alt="" class="wp-image-5794" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-447-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-447-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-447-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-447.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Trong bảng Create: CD/DVD Drive, thiết lập như sau</p>



<ul class="wp-block-list">
<li>Bus/Device: chọn IDE và thứ tự 0</li>



<li>Chọn Use CD/DVD disc image file (iso)
<ul class="wp-block-list">
<li>ISO image: chọn virtio-win.iso</li>
</ul>
</li>
</ul>



<p class="wp-block-paragraph">Bấm Create để tạo ổ CD/DVD Drive mới</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-448-1024x668.png" alt="" class="wp-image-5795" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-448-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-448-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-448-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-448.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">IV. Khởi động máy ảo</h2>



<p class="wp-block-paragraph">Chọn máy ảo Windows10, sau đó bấm vào nút Start trong Content Panel để khởi động máy ảo.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-449-1024x668.png" alt="" class="wp-image-5796" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-449-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-449-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-449-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-449.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Để tiện việc thao tác, mình sẽ mở thêm 1 cửa sổ truy cập bên ngoài bằng cách bấm vào nút Console, chọn noVNC. Trình duyệt sẽ mở thêm 1 cửa sổ hiển thị máy ảo đang boot vào phần cài đặt Windows 10.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-450-1024x668.png" alt="" class="wp-image-5797" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-450-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-450-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-450-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-450.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">V. Cài đặt Windows 10</h2>



<p class="wp-block-paragraph">Thao tác cài đặt Windows 10 trên máy ảo Proxmox rối rắm hơn so với cài đặt Windows 10 trực tiếp lên máy tính nên bạn cần theo dõi để làm cho đúng nhé.</p>



<p class="wp-block-paragraph">Vào đến mục Which type of installation do you want?, chọn Custom: Install Windows only (advanced)</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="830" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-451.png" alt="" class="wp-image-5798" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-451.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-451-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-451-768x623.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bạn sẽ không thấy bất kỳ ổ đĩa cứng nào ở phần chọn ổ cứng cài đặt. Lý do vì Windows không nhận đĩa cứng SCSI thiết lập bởi Proxmox. Bấm vào Load driver</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-452-1024x829.png" alt="" class="wp-image-5799" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-452-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-452-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-452-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-452.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bấm chọn OK</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-453-1024x829.png" alt="" class="wp-image-5800" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-453-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-453-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-453-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-453.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn Red Hat VirIO SCSI pass-through controller (D:amd64w10vioscsi.inf) và bấm Next</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-454-1024x829.png" alt="" class="wp-image-5801" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-454-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-454-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-454-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-454.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau đó tiếp tục các bước cài đặt Windows 10 như bình thường. Sau vài phút, bạn đã có thể truy cập vào giao diện Windows 10 trên máy ảo Proxmox.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-455-1024x829.png" alt="" class="wp-image-5802" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-455-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-455-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-455-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-455.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">VI. Cài đặt Virtio Driver</h2>



<p class="wp-block-paragraph">Bạn cần mở Explorer, truy cập vào ổ đĩa CD Drive của VirtIO ISO, và cài đặt driver bằng cách chạy file virtio-win-gt-x64.msi</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="768" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-456.png" alt="" class="wp-image-5803" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-456.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-456-300x225.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-456-768x576.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Cài đặt VirtIO Win Driver như bao phần mềm khác.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-457-1024x829.png" alt="" class="wp-image-5804" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-457-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-457-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-457-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-457.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau khi cài đặt xong, vào Device Manager sẽ thấy tất cả phần cứng ảo đều đã được Windows nhận diện thành công.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="829" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-458-1024x829.png" alt="" class="wp-image-5805" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-458-1024x829.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-458-300x243.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-458-768x622.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-458.png 1026w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">VII. Cài đặt Guest Agent</h2>



<p class="wp-block-paragraph">Truy cập tiếp vào thư mục guest-agent trong CD VirtIO ISO, chạy tiếp file qemu-ga-x86_64 để cài đặt Guest Agent.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="1024" height="768" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-459.png" alt="" class="wp-image-5806" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-459.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-459-300x225.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-459-768x576.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Sau khi cài đặt Guest Agent, Proxmox đã có thể liên lạc trực tiếp với máy ảo Windows. Khi bấm vào mục Summary trên Proxmox, bạn sẽ thấy hiển thị thông tin CPU usage, Memory usage cùng địa chỉ IP của máy ảo.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="668" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-460-1024x668.png" alt="" class="wp-image-5807" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-460-1024x668.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-460-300x196.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-460-768x501.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-460.png 1460w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Hướng dẫn cài đặt máy ảo Windows 10 trên Proxmox đã hết.</p>



<p class="wp-block-paragraph">Chúc bạn thực hiện thành công!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Cập nhật Proxmox VE từ 6 &#8211; 9</title>
		<link>https://blntech.io.vn/proxmox-cap-nhat-proxmox-ve-tu-6-9/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Tue, 05 May 2026 09:49:31 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Seri Proxmox]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1926</guid>

					<description><![CDATA[Mặc định sau khi cài đặt Proxmox VE, bạn sẽ phải đăng ký gói thuê bao subscription trả phí thì [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Mặc định sau khi cài đặt Proxmox VE, bạn sẽ phải đăng ký gói thuê bao subscription trả phí thì mới có thể cập nhật hệ thống lên phiên bản mới. Khi truy cập vào mục Updates → Repositories, bạn sẽ thấy thông báo “<em>The enterprise repository is enabled, but there is no active subscription!</em>” và không thể cập nhật hệ thống.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="581" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-416-1024x581.png" alt="" class="wp-image-5760" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-416-1024x581.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-416-300x170.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-416-768x436.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-416.png 1086w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tuy nhiên, chúng ta có thể sử dụng kho ứng dụng miễn phí&nbsp;<strong>No-Subscription Repo</strong>&nbsp;để cập nhật Proxmox VE mà không cần phải tốn tiền đăng ký gói thuê bao của Proxmox.</p>



<p class="wp-block-paragraph">Dưới đây là hướng dẫn cách cập nhật Proxmox VE 6 sử dụng No-Subscription Repo </p>



<h4 class="wp-block-heading"><strong>******* Lưu ý: phải update từng bước theo thứ tự phiên bản bạn đang dùng</strong></h4>



<h2 class="wp-block-heading">I. Update Proxmox VE 6.0 đến 6.4</h2>



<p class="wp-block-paragraph">Truy cập Proxmox VE bằng SSH </p>



<pre class="wp-block-preformatted">ssh username@ip </pre>



<p class="wp-block-paragraph">Cập nhật file sourcelist: <strong>nano /etc/apt/sources.list</strong><em> và thêm giá trị</em></p>



<pre class="wp-block-preformatted">#deb http://ftp.debian.org/debian buster main contrib<br><br>#deb http://ftp.debian.org/debian buster-updates main contrib<br><br>#deb http://download.proxmox.com/debian/pve buster pve-no-subscription<br><br>Hết vòng đời nên không hỗ trợ => chuyển sang thư viện mới<br><br><strong>deb http://archive.debian.org/debian buster main contrib<br><br>deb http://archive.debian.org/debian buster-updates main contrib<br><br>deb http://download.proxmox.com/debian/pve buster pve-no-subscription</strong><br><br># security updates<br><br>#deb http://security.debian.org buster/updates main contrib<br><br><strong>deb http://archive.debian.org/debian-security buster/updates main contrib</strong></pre>



<p class="wp-block-paragraph">Cập nhật file pve-enterprise.list: <strong>nano /etc/apt/sources.list.d/pve-enterprise.list</strong></p>



<pre class="wp-block-preformatted"><strong>#deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise</strong></pre>



<p class="wp-block-paragraph">Cập nhật file ceph.list: <strong>nano /etc/apt/sources.list.d/ceph.list</strong></p>



<pre class="wp-block-preformatted"><strong>deb http://download.proxmox.com/debian/ceph-nautilus buster main</strong></pre>



<p class="wp-block-paragraph">Update và khởi động lại Proxmox VE</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>reboot</strong></pre>



<h2 class="wp-block-heading">II. Update Proxmox VE 6.4 đến 7</h2>



<p class="wp-block-paragraph">Dừng và tắt toàn bộ VM đang chạy</p>



<p class="wp-block-paragraph">Truy cập Proxmox VE bằng SSH </p>



<pre class="wp-block-preformatted">ssh username@ip </pre>



<p class="wp-block-paragraph">Update toàn bộ repo từ <strong>Buster</strong> lên <strong>Bullseye</strong></p>



<p class="wp-block-paragraph">Cập nhật file sourcelist: <strong>nano /etc/apt/sources.list</strong><em> và thêm giá trị</em></p>



<pre class="wp-block-preformatted"><strong>deb http://ftp.debian.org/debian bullseye main contrib<br><br>deb http://ftp.debian.org/debian bullseye-updates main contrib</strong><br><br># PVE pve-no-subscription repository provided by proxmox.com,<br># NOT recommended for production use<br><br><strong>deb http://download.proxmox.com/debian bullseye pve-no-subscription</strong><br><br># security updates<br><strong>deb http://security.debian.org/debian-security bullseye-security main contrib</strong></pre>



<p class="wp-block-paragraph">Cập nhật file pve-enterprise.list: <strong>nano /etc/apt/sources.list.d/pve-enterprise.list</strong></p>



<pre class="wp-block-preformatted"><strong>#deb https://enterprise.proxmox.com/debian/pve buster pve-enterprise</strong></pre>



<p class="wp-block-paragraph">Cập nhật file ceph.list: <strong>nano /etc/apt/sources.list.d/ceph.list</strong></p>



<pre class="wp-block-preformatted"><strong>deb http://download.proxmox.com/debian/ceph-pacific bullseye main</strong></pre>



<p class="wp-block-paragraph">Update và khởi động lại Proxmox VE</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>reboot</strong></pre>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="178" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-426.png" alt="" class="wp-image-5770" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-426.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-426-300x75.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="699" height="365" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-427.png" alt="" class="wp-image-5771" style="width:711px;height:auto" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-427.png 699w, https://blntech.io.vn/wp-content/uploads/2025/07/image-427-300x157.png 300w" sizes="auto, (max-width: 699px) 100vw, 699px" /></figure>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="703" height="487" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-428.png" alt="" class="wp-image-5772" style="width:711px;height:auto" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-428.png 703w, https://blntech.io.vn/wp-content/uploads/2025/07/image-428-300x208.png 300w" sizes="auto, (max-width: 703px) 100vw, 703px" /></figure>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="710" height="173" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-429.png" alt="" class="wp-image-5773" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-429.png 710w, https://blntech.io.vn/wp-content/uploads/2025/07/image-429-300x73.png 300w" sizes="auto, (max-width: 710px) 100vw, 710px" /></figure>



<h2 class="wp-block-heading">III. Update Proxmox VE 7</h2>



<h3 class="wp-block-heading">1. Thêm No-Subscription Repo</h3>



<p class="wp-block-paragraph">Đăng nhập vào <strong>Proxmox VE</strong> và truy cập đến mục <strong>Updates</strong> → <strong>Repositories</strong>, bấm nút <strong>Add</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="632" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-417-1024x632.png" alt="" class="wp-image-5761" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-417-1024x632.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-417-300x185.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-417-768x474.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-417.png 1453w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn <strong>No-Subscription</strong> trong mục <strong>Repository</strong> và bấm <strong>Add</strong> để thêm vào danh sách <strong>APT Repositories</strong> của <strong>Proxmox</strong></p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="623" height="233" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-418.png" alt="" class="wp-image-5762" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-418.png 623w, https://blntech.io.vn/wp-content/uploads/2025/07/image-418-300x112.png 300w" sizes="auto, (max-width: 623px) 100vw, 623px" /></figure>



<h3 class="wp-block-heading">2. Tắt Enterprise Repo</h3>



<p class="wp-block-paragraph">Tiếp theo, chọn dòng <strong>pve-enterprise list</strong> và bấm “<strong>Disable</strong>” để vô hiệu hoá nó.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="991" height="614" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-419.png" alt="" class="wp-image-5763" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-419.png 991w, https://blntech.io.vn/wp-content/uploads/2025/07/image-419-300x186.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-419-768x476.png 768w" sizes="auto, (max-width: 991px) 100vw, 991px" /></figure>



<p class="wp-block-paragraph">Proxmox VE giờ đã được kích hoạt sử dụng kho ứng dụng No-Subscription repo và sẵn sàng để được cập nhật. Proxmox sẽ hiện ra thông báo “<em><strong>The no-subscription repository is not recommended for production use!</strong></em>“, nghĩa là không nên dùng cho repo này cho công việc, kinh doanh</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="507" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-420-1024x507.png" alt="" class="wp-image-5764" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-420-1024x507.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-420-300x149.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-420-768x380.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-420.png 1230w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">3. Cập nhật hệ thống</h3>



<p class="wp-block-paragraph">Truy cập vào mục Updates, bấm Refresh để kiểm tra các bản cập nhật hiện có.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="544" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-421-1024x544.png" alt="" class="wp-image-5765" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-421-1024x544.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-421-300x159.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-421-768x408.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-421.png 1230w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Proxmox vẫn sẽ hiện ra bảng thông báo “<strong>No valid subscription</strong>”, nhưng không sao, bấm OK bỏ qua là xong. Chờ vài phút cho nó kiểm tra, khi nào hiện ra thông báo TASK OK, bấm dấu X để tắt.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="814" height="510" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-422.png" alt="" class="wp-image-5766" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-422.png 814w, https://blntech.io.vn/wp-content/uploads/2025/07/image-422-300x188.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-422-768x481.png 768w" sizes="auto, (max-width: 814px) 100vw, 814px" /></figure>



<p class="wp-block-paragraph">Sau đó bấm vào nút Upgrade. Một cửa sổ pop-up sẽ hiện ra, bạn nhập Y và Enter để xác nhận cập nhật là xong.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="515" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-423-1024x515.png" alt="" class="wp-image-5767" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-423-1024x515.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-423-300x151.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-423-768x387.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-423.png 1224w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="800" height="472" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-424.png" alt="" class="wp-image-5768" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-424.png 800w, https://blntech.io.vn/wp-content/uploads/2025/07/image-424-300x177.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-424-768x453.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></figure>



<p class="wp-block-paragraph">Sau khi cập nhật xong, bạn sẽ thấy thông báo “<strong>Your system is up-to-date</strong>”, Proxmox đã được cập nhật lên phiên bản mới nhất.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="800" height="472" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-425.png" alt="" class="wp-image-5769" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-425.png 800w, https://blntech.io.vn/wp-content/uploads/2025/07/image-425-300x177.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-425-768x453.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></figure>



<h2 class="wp-block-heading">IV. Update Proxmox VE 7 đến Proxmox VE 8</h2>



<p class="wp-block-paragraph">Dừng và tắt toàn bộ VM đang chạy</p>



<p class="wp-block-paragraph">Truy cập Proxmox VE bằng SSH </p>



<pre class="wp-block-preformatted">ssh username@ip </pre>



<p class="wp-block-paragraph">Kiểm tra phiên bản Promxox hiện tại bằng lệnh</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>pveversion -v</strong></pre>



<p class="wp-block-paragraph">Kết quả trả về phải hiển thị version 7.4-12 trở lên mới có thể update</p>



<p class="wp-block-paragraph">Update toàn bộ repo từ <strong>Bullseye</strong> lên <strong>bookworm</strong></p>



<p class="wp-block-paragraph">Cập nhật file sourcelist: <strong>nano /etc/apt/sources.list</strong><em> </em><em>và thêm giá trị</em></p>



<pre class="wp-block-preformatted"><strong>deb http://ftp.debian.org/debian bookworm main contrib<br><br>deb http://ftp.debian.org/debian bookworm-updates main contrib<br><br>deb http://download.proxmox.com/debian bookworm pve-no-subscription<br><br></strong># security updates<strong><br><br>deb http://security.debian.org/debian-security bookworm-security main contrib</strong></pre>



<p class="wp-block-paragraph">Cập nhật file pve-enterprise.list: <strong>nano /etc/apt/sources.list.d/pve-enterprise.list</strong></p>



<pre class="wp-block-preformatted"><strong>#deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise</strong></pre>



<p class="wp-block-paragraph">Cập nhật file ceph.list: <strong>nano /etc/apt/sources.list.d/ceph.list</strong></p>



<pre class="wp-block-preformatted"><strong>deb http://download.proxmox.com/debian/ceph-quincy bookworm main</strong></pre>



<p class="wp-block-paragraph">Update và khởi động lại Proxmox VE</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>reboot</strong></pre>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="712" height="178" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-430.png" alt="" class="wp-image-5774" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-430.png 712w, https://blntech.io.vn/wp-content/uploads/2025/07/image-430-300x75.png 300w" sizes="auto, (max-width: 712px) 100vw, 712px" /></figure>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="685" height="175" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-431.png" alt="" class="wp-image-5775" style="aspect-ratio:3.9144893111638956;width:715px;height:auto" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-431.png 685w, https://blntech.io.vn/wp-content/uploads/2025/07/image-431-300x77.png 300w" sizes="auto, (max-width: 685px) 100vw, 685px" /></figure>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="686" height="177" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-432.png" alt="" class="wp-image-5776" style="aspect-ratio:3.875818661223101;width:714px;height:auto" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-432.png 686w, https://blntech.io.vn/wp-content/uploads/2025/07/image-432-300x77.png 300w" sizes="auto, (max-width: 686px) 100vw, 686px" /></figure>



<h2 class="wp-block-heading">V. Update Proxmox VE 8 đến Proxmox VE 9</h2>



<p class="wp-block-paragraph">Dừng và tắt toàn bộ VM đang chạy</p>



<p class="wp-block-paragraph">Truy cập Proxmox VE bằng SSH </p>



<pre class="wp-block-preformatted">ssh username@ip </pre>



<p class="wp-block-paragraph">Kiểm tra phiên bản Promxox hiện tại bằng lệnh</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>pveversion -v</strong></pre>



<p class="wp-block-paragraph">Kết quả trả về phải hiển thị version 8.4.1 trở lên mới có thể update</p>



<p class="wp-block-paragraph">Update toàn bộ repo từ <strong>bookworm</strong> lên <strong>trixie</strong></p>



<p class="wp-block-paragraph">Cập nhật file sourcelist: <strong>nano /etc/apt/sources.list</strong><em> </em><em>và thêm giá trị</em></p>



<pre class="wp-block-preformatted"><strong>deb http://ftp.debian.org/debian trixie main contrib</strong><br><strong><br>deb http://ftp.debian.org/debian trixie-updates main contrib</strong><br><strong><br>deb http://download.proxmox.com/debian/pve trixie pve-no-subscription</strong><br><strong><br></strong># security updates<br><strong><br>deb http://security.debian.org/debian-security trixie-security main contrib</strong></pre>



<p class="wp-block-paragraph">Cập nhật file pve-enterprise.list: <strong>nano /etc/apt/sources.list.d/pve-enterprise.list</strong></p>



<pre class="wp-block-preformatted"><strong>#deb https://enterprise.proxmox.com/debian/pve trixie pve-enterprise</strong></pre>



<p class="wp-block-paragraph">Cập nhật file ceph.list: <strong>nano /etc/apt/sources.list.d/ceph.list</strong></p>



<pre class="wp-block-preformatted"><strong>deb http://download.proxmox.com/debian/ceph-squid trixie test</strong></pre>



<p class="wp-block-paragraph">Update và khởi động lại Proxmox VE</p>



<pre class="wp-block-preformatted"><strong>apt update &amp;&amp; apt full-upgrade -y<br><br>reboot</strong></pre>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="712" height="178" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-430.png" alt="" class="wp-image-5774" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-430.png 712w, https://blntech.io.vn/wp-content/uploads/2025/07/image-430-300x75.png 300w" sizes="auto, (max-width: 712px) 100vw, 712px" /></figure>



<p class="wp-block-paragraph"></p>



<figure class="wp-block-image aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="685" height="175" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-431.png" alt="" class="wp-image-5775" style="aspect-ratio:3.9144893111638956;width:715px;height:auto" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-431.png 685w, https://blntech.io.vn/wp-content/uploads/2025/07/image-431-300x77.png 300w" sizes="auto, (max-width: 685px) 100vw, 685px" /></figure>



<p class="wp-block-paragraph">Nếu gặp lỗi này, chạy lại lệnh theo hướng dẫn</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="971" height="200" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-433.png" alt="" class="wp-image-5777" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-433.png 971w, https://blntech.io.vn/wp-content/uploads/2025/07/image-433-300x62.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-433-768x158.png 768w" sizes="auto, (max-width: 971px) 100vw, 971px" /></figure>



<pre class="wp-block-preformatted"><strong>echo 'grub-efi-amd64 grub2/force_efi_extra_removable boolean true' | debconf-set-selections -v -u<br><br>apt install --reinstall grub-efi-amd64 -y</strong><br><br>Chạy update lại GRUB: <br><br><strong>update-grub<br><br>reboot</strong></pre>



<h3 class="wp-block-heading"><strong>Update lại thư viện</strong></h3>



<p class="wp-block-paragraph">Xoá các mục liên quan đến enterprise</p>



<pre class="wp-block-preformatted"><strong>rm -f /etc/apt/sources.list.d/pve-enterprise.list*<br><br>sed -i '/enterprise\.proxmox\.com/d' /etc/apt/sources.list</strong></pre>



<p class="wp-block-paragraph">Đặt lại file <strong>sources.list</strong></p>



<pre class="wp-block-preformatted"><strong>cat >/etc/apt/sources.list &lt;&lt;'EOF'<br><br>deb http://ftp.debian.org/debian trixie main contrib non-free non-free-firmware<br><br>deb http://ftp.debian.org/debian trixie-updates main contrib non-free non-free-firmware<br><br>deb http://security.debian.org/debian-security trixie-security main contrib non-free non-free-firmware<br><br>EOF</strong></pre>



<p class="wp-block-paragraph">Tạo Repo Proxmox VE 9 (no-subscription)</p>



<pre class="wp-block-preformatted"><strong>cat >/etc/apt/sources.list.d/pve-no-sub.list &lt;&lt;'EOF'<br><br>deb http://download.proxmox.com/debian/pve trixie pve-no-subscription<br><br>EOF</strong></pre>



<p class="wp-block-paragraph">Kiểm tra mục Ceph</p>



<pre class="wp-block-preformatted">Xoá file nếu KHÔNG dùng Ceph : <br><br><strong>rm -f /etc/apt/sources.list.d/ceph.list</strong><br><br>Dùng 1 trong 2 địa chỉ bên dưới<br><br><strong>cat >/etc/apt/sources.list.d/ceph.list &lt;&lt;'EOF'<br><br>deb http://download.proxmox.com/debian/ceph-quincy bookworm no-subscription<br><br>(deb http://download.proxmox.com/debian/ceph-squid bookworm no-subscription)<br><br>EOF</strong></pre>



<p class="wp-block-paragraph">Dọn cache &amp; update</p>



<pre class="wp-block-preformatted"><strong>apt clean<br><br>rm -rf /var/lib/apt/lists/*<br><br>apt update &amp;&amp; apt full-upgrade -y</strong></pre>



<p class="wp-block-paragraph">Check lại gói enterprise, nếu còn thì xoá</p>



<pre class="wp-block-preformatted"><strong>rgrep -n "enterprise.proxmox.com" /etc/apt</strong></pre>



<p class="wp-block-paragraph">Chúc bạn thực hiện thành công.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn : Tổng hợp nhiều nguồn</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Cài Đặt XPEnology DSM Lên Máy Ảo Proxmox</title>
		<link>https://blntech.io.vn/cai-dat-xpenology-dsm-len-may-ao-proxmox/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 22 Apr 2026 09:22:53 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Xpenology]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Synology]]></category>
		<category><![CDATA[xpenology]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1793</guid>

					<description><![CDATA[Bài viết này để lưu lại cách cài đặt Xpenology DSM 7.1 lên máy ảo Proxmox I. XPEnology là gì? [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Bài viết này để lưu lại cách cài đặt Xpenology DSM 7.1 lên máy ảo Proxmox</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Hướng dẫn cài đặt XPEnology DSM 7.2 lên máy ảo Proxmox sử dụng ARC Loader và cấu hình Static IP" width="1200" height="675" src="https://www.youtube.com/embed/nRERez1Y9zs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">I. XPEnology là gì?</h2>



<p class="wp-block-paragraph">XPEnology là một phần mềm được biên tập dựa trên Linux nhằm mô phỏng hệ thống DSM Synology. Nhờ đó, chúng ta có thể cài đặt hệ điều hành Synology Disk Station Manager (DSM) trên các phần cứng không phải do Synology sản xuất.</p>



<p class="wp-block-paragraph">Xpenology cung cấp một giải pháp để biến các máy tính cá nhân thành một thiết bị NAS, cung cấp đầy đủ các tính năng mạnh mẽ của các thiết bị NAS Synology đắt tiền nhưng với chi phí rẻ hơn nhiều so với mua thiết bị chính hãng.</p>



<h2 class="wp-block-heading">II. Thiết lập máy ảo trên Proxmox</h2>



<h3 class="wp-block-heading">1. Tạo máy ảo</h3>



<p class="wp-block-paragraph">Truy cập vào Proxmox, tạo máy ảo (Create VM) với các thông số như dưới đây</p>



<p class="wp-block-paragraph">Đặt tên cho máy ảo, ví dụ: xpenology. Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-375.png" alt="" class="wp-image-5706" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-375.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-375-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>OS</strong>, chọn <strong>Do not use any media</strong>. Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-376.png" alt="" class="wp-image-5707" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-376.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-376-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>System</strong>: để thông số mặc định. Bấm Next</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-377.png" alt="" class="wp-image-5708" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-377.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-377-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>Disks</strong>: tạo ổ đĩa ảo dung lượng 50GB để test thử. <strong>Thông số Bus/Device bắt buộc phải chọn SATA</strong>. Bấm Next.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-378.png" alt="" class="wp-image-5709" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-378.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-378-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>CPU</strong>: Chọn 1 hoặc 2 Cores hoặc hơn tuỳ nhu cầu. Bấm Next.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-379.png" alt="" class="wp-image-5710" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-379.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-379-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>Memory</strong>: bắt buộc tối thiểu 4096 MB (4 GB RAM). Bấm Next.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-380.png" alt="" class="wp-image-5711" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-380.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-380-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>Network</strong>: thông số Model cần phải chọn Intel E1000. Bấm Next.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="728" height="517" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-381.png" alt="" class="wp-image-5712" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-381.png 728w, https://blntech.io.vn/wp-content/uploads/2025/07/image-381-300x213.png 300w" sizes="auto, (max-width: 728px) 100vw, 728px" /></figure>



<p class="wp-block-paragraph">Mục <strong>Confim</strong> cuối cùng. Bấm <strong>Finish</strong> để xác nhận tạo máy ảo mới.</p>



<h3 class="wp-block-heading">2. Tải ARPL Bootloader</h3>



<p class="wp-block-paragraph">Truy cập vào đây để tìm link tải ARPL Bootloader:&nbsp;<a href="https://github.com/fbelavenuto/arpl/releases/" target="_blank" rel="noreferrer noopener">https://github.com/fbelavenuto/arpl/releases/</a></p>



<p class="wp-block-paragraph">Link <a href="https://github.com/hoangnhan2802/arpl/releases" data-type="link" data-id="https://github.com/hoangnhan2802/arpl/releases/tag/V1.1-beta2a" target="_blank" rel="noreferrer noopener">Dự Phòng</a> hoặc Kho Backup : <a href="https://soft.blntech.io.vn/?cat=ISO+Windows+-+Linux+-+MacOS&amp;app=ARPL+Bootloader" target="_blank" rel="noreferrer noopener">ARPL Bootloader</a></p>



<p class="wp-block-paragraph">Bấm chuột phải vào chỗ link arpl-1.1-beta2a.img.zip, chọn Copy Link</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="690" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-382-1024x690.png" alt="" class="wp-image-5713" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-382-1024x690.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-382-300x202.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-382-768x517.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-382.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Truy cập vào console của Proxmox, dùng lệnh wget để tải file này về</p>



<pre class="wp-block-preformatted">wget https://github.com/fbelavenuto/arpl/releases/download/v1.1-beta2a/arpl-1.1-beta2a.img.zip</pre>



<p class="wp-block-paragraph">Cài đặt unzip và sau đó unzip file vừa tải về</p>



<pre class="wp-block-preformatted"><code>sudo apt update<br>sudo apt install unzip -y<br>unzip arpl-1.1-beta2a.img.zip</code></pre>



<h3 class="wp-block-heading">3. Kết nối Bootloader IMG vào máy ảo</h3>



<p class="wp-block-paragraph">Kết nối Bootloader vào máy ảo xpenology (ID: 126) bằng lệnh sau</p>



<pre class="wp-block-preformatted"><code>qm importdisk 126 arpl.img local-lvm</code></pre>



<p class="wp-block-paragraph">Trong đó <strong><code>126</code> </strong>là ID của máy ảo vừa tạo ở bước I. Còn <code><strong>local-lvm</strong></code> là tên của phân vùng chứa dữ liệu. Bạn có thể xem thông số này ở phần menu bên trái của Proxmox.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="188" height="165" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-383.png" alt="" class="wp-image-5714"/></figure>



<p class="wp-block-paragraph">Chờ vài phút để hệ thống import và kết nối file này vào máy ảo 126</p>



<pre class="wp-block-preformatted"><code>importing disk 'arpl.img' to VM 126 ...<br>  Logical volume "vm-126-disk-1" created.<br>transferred 0.0 B of 1.0 GiB (0.00%)<br>transferred 12.0 MiB of 1.0 GiB (1.17%)<br>transferred 24.0 MiB of 1.0 GiB (2.34%)<br>transferred 36.0 MiB of 1.0 GiB (3.52%)<br>transferred 48.0 MiB of 1.0 GiB (4.69%)<br>transferred 60.0 MiB of 1.0 GiB (5.86%)<br>transferred 72.0 MiB of 1.0 GiB (7.03%)<br>transferred 84.0 MiB of 1.0 GiB (8.20%)<br>transferred 96.1 MiB of 1.0 GiB (9.38%)<br>transferred 108.0 MiB of 1.0 GiB (10.55%)<br>transferred 120.0 MiB of 1.0 GiB (11.72%)<br>transferred 132.0 MiB of 1.0 GiB (12.89%)<br>transferred 144.0 MiB of 1.0 GiB (14.06%)<br>transferred 156.0 MiB of 1.0 GiB (15.23%)<br>transferred 168.0 MiB of 1.0 GiB (16.41%)<br>transferred 180.0 MiB of 1.0 GiB (17.58%)<br>transferred 192.0 MiB of 1.0 GiB (18.75%)<br>transferred 204.0 MiB of 1.0 GiB (19.92%)<br>transferred 216.0 MiB of 1.0 GiB (21.09%)<br>transferred 228.0 MiB of 1.0 GiB (22.27%)<br>transferred 240.0 MiB of 1.0 GiB (23.44%)<br>transferred 252.0 MiB of 1.0 GiB (24.61%)<br>transferred 264.0 MiB of 1.0 GiB (25.78%)<br>transferred 276.0 MiB of 1.0 GiB (26.95%)<br>transferred 287.9 MiB of 1.0 GiB (28.12%)<br>transferred 300.0 MiB of 1.0 GiB (29.30%)<br>transferred 312.0 MiB of 1.0 GiB (30.47%)<br>transferred 324.0 MiB of 1.0 GiB (31.64%)<br>transferred 336.0 MiB of 1.0 GiB (32.81%)<br>transferred 348.0 MiB of 1.0 GiB (33.98%)<br>transferred 360.0 MiB of 1.0 GiB (35.16%)<br>transferred 372.0 MiB of 1.0 GiB (36.33%)<br>transferred 384.0 MiB of 1.0 GiB (37.50%)<br>transferred 396.0 MiB of 1.0 GiB (38.67%)<br>transferred 408.0 MiB of 1.0 GiB (39.84%)<br>transferred 420.0 MiB of 1.0 GiB (41.02%)<br>transferred 432.0 MiB of 1.0 GiB (42.19%)<br>transferred 444.0 MiB of 1.0 GiB (43.36%)<br>transferred 456.0 MiB of 1.0 GiB (44.53%)<br>transferred 468.0 MiB of 1.0 GiB (45.70%)<br>transferred 480.1 MiB of 1.0 GiB (46.88%)<br>transferred 492.0 MiB of 1.0 GiB (48.05%)<br>transferred 504.0 MiB of 1.0 GiB (49.22%)<br>transferred 516.0 MiB of 1.0 GiB (50.39%)<br>transferred 528.0 MiB of 1.0 GiB (51.56%)<br>transferred 540.0 MiB of 1.0 GiB (52.73%)<br>transferred 552.0 MiB of 1.0 GiB (53.91%)<br>transferred 564.0 MiB of 1.0 GiB (55.08%)<br>transferred 576.0 MiB of 1.0 GiB (56.25%)<br>transferred 588.0 MiB of 1.0 GiB (57.42%)<br>transferred 600.0 MiB of 1.0 GiB (58.59%)<br>transferred 612.0 MiB of 1.0 GiB (59.77%)<br>transferred 624.0 MiB of 1.0 GiB (60.94%)<br>transferred 636.0 MiB of 1.0 GiB (62.11%)<br>transferred 648.0 MiB of 1.0 GiB (63.28%)<br>transferred 660.0 MiB of 1.0 GiB (64.45%)<br>transferred 671.9 MiB of 1.0 GiB (65.62%)<br>transferred 684.0 MiB of 1.0 GiB (66.80%)<br>transferred 696.0 MiB of 1.0 GiB (67.97%)<br>transferred 708.0 MiB of 1.0 GiB (69.14%)<br>transferred 720.0 MiB of 1.0 GiB (70.31%)<br>transferred 732.0 MiB of 1.0 GiB (71.48%)<br>transferred 744.0 MiB of 1.0 GiB (72.66%)<br>transferred 756.0 MiB of 1.0 GiB (73.83%)<br>transferred 768.0 MiB of 1.0 GiB (75.00%)<br>transferred 780.0 MiB of 1.0 GiB (76.17%)<br>transferred 792.0 MiB of 1.0 GiB (77.34%)<br>transferred 804.0 MiB of 1.0 GiB (78.52%)<br>transferred 816.0 MiB of 1.0 GiB (79.69%)<br>transferred 828.0 MiB of 1.0 GiB (80.86%)<br>transferred 840.0 MiB of 1.0 GiB (82.03%)<br>transferred 852.0 MiB of 1.0 GiB (83.20%)<br>transferred 864.1 MiB of 1.0 GiB (84.38%)<br>transferred 876.0 MiB of 1.0 GiB (85.55%)<br>transferred 888.0 MiB of 1.0 GiB (86.72%)<br>transferred 900.0 MiB of 1.0 GiB (87.89%)<br>transferred 912.0 MiB of 1.0 GiB (89.06%)<br>transferred 924.0 MiB of 1.0 GiB (90.23%)<br>transferred 936.0 MiB of 1.0 GiB (91.41%)<br>transferred 948.0 MiB of 1.0 GiB (92.58%)<br>transferred 960.0 MiB of 1.0 GiB (93.75%)<br>transferred 972.0 MiB of 1.0 GiB (94.92%)<br>transferred 984.0 MiB of 1.0 GiB (96.09%)<br>transferred 996.0 MiB of 1.0 GiB (97.27%)<br>transferred 1008.0 MiB of 1.0 GiB (98.44%)<br>transferred 1020.0 MiB of 1.0 GiB (99.61%)<br>transferred 1.0 GiB of 1.0 GiB (100.00%)<br>transferred 1.0 GiB of 1.0 GiB (100.00%)<br>Successfully imported disk as 'unused0:local-lvm:vm-126-disk-1'</code></pre>



<p class="wp-block-paragraph">Quay lại giao diện của Proxmox, chọn máy ảo xpenology, truy cập vào mục Hardware, bạn sẽ thấy có thêm mục Unused Disk 0. Double click vào đó.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-384-1024x729.png" alt="" class="wp-image-5715" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-384-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-384-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-384-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-384.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bus/Device: chọn SATA. Bấm Add để kích hoạt.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="606" height="226" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-385.png" alt="" class="wp-image-5716" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-385.png 606w, https://blntech.io.vn/wp-content/uploads/2025/07/image-385-300x112.png 300w" sizes="auto, (max-width: 606px) 100vw, 606px" /></figure>



<p class="wp-block-paragraph">Truy cập tiếp vào phần Options, chọn Boot Order. Chọn vào cột Enable của ổ đĩa <code><strong>local-lvm:vm-126-disk-1,size=1G</strong></code> và kéo lên cùng để ưu tiên làm Boot Device khi khởi động máy ảo.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="646" height="275" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-386.png" alt="" class="wp-image-5717" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-386.png 646w, https://blntech.io.vn/wp-content/uploads/2025/07/image-386-300x128.png 300w" sizes="auto, (max-width: 646px) 100vw, 646px" /></figure>



<h2 class="wp-block-heading">III. Cài đặt Bootloader</h2>



<p class="wp-block-paragraph">Khởi động máy ảo xpenology. Chờ vài phút, trên màn hình sẽ hiện ra thông tin như dưới đây, trong đó có địa chỉ IP dùng để thiết lập Bootloader.</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="800" height="641" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-387.png" alt="" class="wp-image-5718" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-387.png 800w, https://blntech.io.vn/wp-content/uploads/2025/07/image-387-300x240.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-387-768x615.png 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></figure>



<p class="wp-block-paragraph">Mở trình duyệt, truy cập vào địa chỉ <code><strong>http://192.168.0.189:7681</strong></code> để bắt đầu cấu hình bootloader.</p>



<p class="wp-block-paragraph">Chọn mục Choose a model và bấm Enter</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-388-1024x729.png" alt="" class="wp-image-5719" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-388-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-388-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-388-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-388.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Tuỳ vào cấu hình máy mà mục model sẽ hiện ra các model tương thích. Mình chọn DS3622xs+ (broadwellnk), theo hướng dẫn chọn model ở đây:&nbsp;<a href="https://xpenology.com/forum/topic/61634-dsm-7x-loaders-and-platforms/" target="_blank" rel="noreferrer noopener">https://xpenology.com/forum/topic/61634-dsm-7x-loaders-and-platforms/</a>. Bấm Enter để tiếp tục</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-389-1024x729.png" alt="" class="wp-image-5720" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-389-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-389-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-389-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-389.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn tiếp mục <strong>Choose a Build Number.</strong> Bấm Enter</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-390-1024x729.png" alt="" class="wp-image-5721" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-390-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-390-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-390-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-390.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn mục <strong>42962</strong>, bấm Enter.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-391-1024x729.png" alt="" class="wp-image-5722" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-391-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-391-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-391-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-391.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn tiếp mục <strong>Choose a serieal number</strong></p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-392-1024x729.png" alt="" class="wp-image-5723" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-392-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-392-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-392-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-392.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn <strong>Generate a random serial number</strong> để tự tạo serial mới.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-393-1024x729.png" alt="" class="wp-image-5724" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-393-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-393-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-393-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-393.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn <strong>Build the loader</strong> để bắt đầu cài đặt bootloader.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-394-1024x729.png" alt="" class="wp-image-5725" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-394-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-394-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-394-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-394.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chờ vài phút để hệ thống cài đặt. Sau khi quay lại menu, chọn <strong>Boot the loader</strong>.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-395-1024x729.png" alt="" class="wp-image-5726" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-395-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-395-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-395-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-395.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Màn hình website sẽ hiện ra thông tin như dưới đây</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="228" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-396-1024x228.png" alt="" class="wp-image-5727" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-396-1024x228.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-396-300x67.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-396-768x171.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-396.png 1328w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">IV. Cài đặt Xpenology DSM 7.1</h2>



<p class="wp-block-paragraph">Mở tab mới trên trình duyệt web, truy cập vào địa chỉ <strong><code>http://192.168.0.189:5000</code> </strong>để bắt đầu cài đặt DSM 7.1</p>



<p class="wp-block-paragraph">Bấm <strong>Install</strong> để bắt đầu.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-397-1024x729.png" alt="" class="wp-image-5728" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-397-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-397-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-397-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-397.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn <strong>Automatically</strong> …, bấm Next</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-398-1024x729.png" alt="" class="wp-image-5729" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-398-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-398-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-398-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-398.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Xác nhận dữ liệu sẽ bị xoá. Bấm <strong>Continue.</strong></p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="511" height="275" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-399.png" alt="" class="wp-image-5730" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-399.png 511w, https://blntech.io.vn/wp-content/uploads/2025/07/image-399-300x161.png 300w" sizes="auto, (max-width: 511px) 100vw, 511px" /></figure>



<p class="wp-block-paragraph">Quá trình cài đặt khoảng 5-10 phút tuỳ vào kết nối mạng và cấu hình máy ảo.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-400-1024x729.png" alt="" class="wp-image-5731" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-400-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-400-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-400-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-400.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">V. Cấu hình DSM 7.1 sau khi cài đặt</h2>



<p class="wp-block-paragraph">Nếu quá trình cài đặt suôn sẻ, sau 10′ bạn sẽ thấy hiện ra màn hình như dưới đây. Bấm Start để bắt đầu cấu hình thông số cho DSM 7.1</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-401-1024x729.png" alt="" class="wp-image-5732" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-401-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-401-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-401-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-401.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">1. Cấu hình hệt thống</h3>



<p class="wp-block-paragraph">Nhập thông số căn bản và bấm Next</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-402-1024x729.png" alt="" class="wp-image-5733" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-402-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-402-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-402-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-402.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn “<strong>Notify me when…</strong>” để ngăn hệ thống tự động cập nhật, đề phòng biến cố không tương thích khiến Xpenology không truy cập được.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-403-1024x729.png" alt="" class="wp-image-5734" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-403-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-403-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-403-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-403.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Phần này có thể bấm Skip bỏ qua, chưa cần kết nối với tài khoản Synology.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-404-1024x729.png" alt="" class="wp-image-5735" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-404-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-404-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-404-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-404.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Bấm <strong>Submit</strong>.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-405-1024x729.png" alt="" class="wp-image-5736" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-405-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-405-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-405-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-405.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Giao diện của DSM đã hiện ra. Ngon lành rồi!</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-406-1024x729.png" alt="" class="wp-image-5737" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-406-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-406-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-406-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-406.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading">2. Cấu hình Storage Pool</h3>



<p class="wp-block-paragraph">Làm tiếp luôn bước cài đặt Storage Pool. Bấm Start để bắt đầu.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-407-1024x729.png" alt="" class="wp-image-5738" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-407-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-407-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-407-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-407.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Chọn RAID Type: mình không rành sự khác nhau giữa mấy cái này, nên chọn tạm SHR. Bấm Next.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-408-1024x729.png" alt="" class="wp-image-5739" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-408-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-408-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-408-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-408.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-409-1024x729.png" alt="" class="wp-image-5740" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-409-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-409-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-409-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-409.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-410-1024x729.png" alt="" class="wp-image-5741" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-410-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-410-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-410-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-410.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-411-1024x729.png" alt="" class="wp-image-5742" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-411-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-411-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-411-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-411.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-412-1024x729.png" alt="" class="wp-image-5743" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-412-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-412-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-412-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-412.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-413-1024x729.png" alt="" class="wp-image-5744" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-413-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-413-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-413-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-413.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-414-1024x729.png" alt="" class="wp-image-5745" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-414-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-414-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-414-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-414.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Cài đặt xong rồi. Synology Fake đã sẵn sàng hoạt động.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="729" src="https://blntech.io.vn/wp-content/uploads/2025/07/image-415-1024x729.png" alt="" class="wp-image-5746" srcset="https://blntech.io.vn/wp-content/uploads/2025/07/image-415-1024x729.png 1024w, https://blntech.io.vn/wp-content/uploads/2025/07/image-415-300x214.png 300w, https://blntech.io.vn/wp-content/uploads/2025/07/image-415-768x547.png 768w, https://blntech.io.vn/wp-content/uploads/2025/07/image-415.png 1329w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Trong bài viết kế tiếp mình sẽ Pass-through đĩa cứng vào máy ảo này và thiết lập lại Storage.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox &#8211; Passthrough HDD / SDD vào máy ảo XPEnology</title>
		<link>https://blntech.io.vn/proxmox-passthrough-hdd-sdd-vao-may-ao-xpenology/</link>
		
		<dc:creator><![CDATA[nhanvph]]></dc:creator>
		<pubDate>Wed, 22 Apr 2026 08:24:18 +0000</pubDate>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Xpenology]]></category>
		<category><![CDATA[Hard-drive-passthough]]></category>
		<category><![CDATA[Proxmox]]></category>
		<category><![CDATA[Usb-passthrough]]></category>
		<category><![CDATA[xpenology]]></category>
		<guid isPermaLink="false">https://blntech.io.vn/?p=1789</guid>

					<description><![CDATA[Sau khi cài đặt máy ảo XPEnology trên Proxmox, mình tiếp tục thực hiện việc passthrough ổ đĩa cứng để máy [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Sau khi <a href="https://blntech.io.vn/cai-dat-xpenology-dsm-len-may-ao-proxmox/" data-type="post" data-id="1793" target="_blank" rel="noreferrer noopener">cài đặt máy ảo XPEnology trên Proxmox</a>, mình tiếp tục thực hiện việc passthrough ổ đĩa cứng để máy ảo XPEnology có thể truy xuất trực tiếp, không phải thông qua sự quản lý của Proxmox.</p>



<p class="wp-block-paragraph">Dưới đây là hướng dẫn mình thực hiện cho máy ảo XPEnology. Bạn có thể thực hiện cho bất kỳ máy ảo KVM nào khác trên nền tảng Proxmox.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Cấu hình pass-through ổ cứng gắn trong HDD / SDD vào máy ảo Xpenology trên Proxmox" width="1200" height="675" src="https://www.youtube.com/embed/FpdREhpBtVg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h2 class="wp-block-heading">1. Passthourgh ổ cứng gắn ngoài (External HDD)</h2>



<p class="wp-block-paragraph">Đối với ổ cứng gắn ngoài (External HDD) cắm vào máy chủ qua cổng USB, mình thao tác y hệt như cách thiết lập USB Passthrough đã chia sẻ trong bài viết <strong><a href="https://blntech.io.vn/proxmox-phan-6-thiet-lap-usb-passthrough-cho-may-ao-kvm/" data-type="post" data-id="1781" target="_blank" rel="noreferrer noopener">Thiết lập USB Passthrough cho máy ảo KVM</a></strong></p>



<p class="wp-block-paragraph">Ví dụ như dưới đây là ổ cứng gắn ngoài Portable HDD được cấu hình Passthrough vào máy ảo .</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="404" height="249" src="https://blntech.io.vn/wp-content/uploads/2026/04/image-57.png" alt="" class="wp-image-5752" srcset="https://blntech.io.vn/wp-content/uploads/2026/04/image-57.png 404w, https://blntech.io.vn/wp-content/uploads/2026/04/image-57-300x185.png 300w" sizes="auto, (max-width: 404px) 100vw, 404px" /></figure>



<h2 class="wp-block-heading">2. Passthourgh ổ cứng gắn trong</h2>



<p class="wp-block-paragraph">Đối với ổ cứng gắn trong (Interal HDD) kết nối thông qua cổng SATA / NVME, mình cần phải SSH vào console của Proxmox để thực hiện qua dòng lệnh.</p>



<p class="wp-block-paragraph">Sử dụng lệnh sau để tìm các ổ cứng đang có trên máy chủ Proxmox</p>



<pre class="wp-block-preformatted"><code>lsblk |awk 'NR==1{print $0" DEVICE-ID(S)"}NR>1{dev=$1;printf $0" ";system("find /dev/disk/by-id -lname "*"dev"" -printf " %p"");print "";}'|grep -v -E 'part|lvm'</code></pre>



<p class="wp-block-paragraph">Kết quả hiện ra như dưới đây.</p>



<pre class="wp-block-preformatted"><code>NAME                           MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT DEVICE-ID(S)<br>sda                              8:0    0 465.8G  0 disk   /dev/disk/by-id/ata-TOSHIBA_MQ01ABF050M_X66BP0UWT /dev/disk/by-id/wwn-0x5000039752682108<br>nvme0n1                        259:0    0 953.9G  0 disk   /dev/disk/by-id/nvme-eui.002538ba71be0f6a /dev/disk/by-id/nvme-SAMSUNG_MZVLW1T0HMLH-000L7_S35ANX0JA08970</code></pre>



<p class="wp-block-paragraph">Mình muốn Passthrough ổ cứng TOSHIBA (465.8G) vào máy ảo XPENology, ghi lại id của nó: <code><strong>ata-TOSHIBA_MQ01ABF050M_X66BP0UWT</strong></code>.</p>



<p class="wp-block-paragraph">Để passthrough ổ cứng này vào máy ảo, sử dụng lệnh <code><strong>qm set [OPTIONS]</strong></code></p>



<pre class="wp-block-preformatted"><code>qm set 126 -sata3 /dev/disk/by-id/ata-TOSHIBA_MQ01ABF050M_X66BP0UWT<br>update VM 126: -sata3 /dev/disk/by-id/ata-TOSHIBA_MQ01ABF050M_X66BP0UWT</code></pre>



<ul class="wp-block-list">
<li><code><strong>126</strong></code>: ID của máy ảo XPENology</li>



<li><code><strong>-sata3</strong></code>: kết nối vào máy ảo thông qua chuẩn SATA. Nếu cần passthrough nhiều ổ đĩa, cần phải đổi thành <code>-sata4</code>, <code>-sata5</code>,…</li>



<li><code><strong>/dev/disk/by-id/ata-TOSHIBA_MQ01ABF050M_X66BP0UWT</strong></code>: id của ổ cứng cần Passthrough</li>
</ul>



<p class="wp-block-paragraph">Quay lại giao diện Proxmox, truy cập vào phần Hardware của máy ảo XPENology, danh sách đã hiện ra thêm Hard Disk (sata3).</p>



<figure class="wp-block-image aligncenter size-full"><img loading="lazy" decoding="async" width="1001" height="688" src="https://blntech.io.vn/wp-content/uploads/2026/04/image-58.png" alt="" class="wp-image-5753" srcset="https://blntech.io.vn/wp-content/uploads/2026/04/image-58.png 1001w, https://blntech.io.vn/wp-content/uploads/2026/04/image-58-300x206.png 300w, https://blntech.io.vn/wp-content/uploads/2026/04/image-58-768x528.png 768w" sizes="auto, (max-width: 1001px) 100vw, 1001px" /></figure>



<p class="wp-block-paragraph">Truy cập vào máy ảo, ra lệnh Shutdown tắt máy.</p>



<h2 class="wp-block-heading">3. Passthrough HDD Serial Number</h2>



<p class="wp-block-paragraph">Do Synology nhận diện ổ cứng theo số Serial Number, nên bắt buộc phải bổ sung thêm bước Passthrough HDD Serial Number vào Synology.</p>



<p class="wp-block-paragraph">Cài đặt <strong>lshw</strong> để kiểm tra Serial Number của ổ cứng</p>



<pre class="wp-block-preformatted"><code><br>apt install lshw</code></pre>



<p class="wp-block-paragraph">Tìm Serial Number bằng lệnh</p>



<pre class="wp-block-preformatted"><code>lshw -C disk</code></pre>



<p class="wp-block-paragraph">Kết quả trả về sẽ thấy dòng serial: WXH….. Đây chính là Serial Number của HDD</p>



<pre class="wp-block-preformatted"><code>  *-disk<br>       description: ATA Disk<br>       product: WDC WD10SPZX-75Z<br>       vendor: Western Digital<br>       physical id: 0.0.0<br>       bus info: scsi@0:0.0.0<br>       logical name: /dev/sda<br>       version: 1A03<br>       serial: WXH1AC8EZTTH<br>       size: 931GiB (1TB)<br>       capabilities: partitioned partitioned:dos<br>       configuration: ansiversion=5 logicalsectorsize=512 sectorsize=4096 signature=d7c8623e</code></pre>



<p class="wp-block-paragraph">Truy cập vào Shell của Proxmox, chỉnh sửa file cấu hình của máy ảo</p>



<pre class="wp-block-preformatted"><code>nano /etc/pve/qemu-server/100.conf</code></pre>



<p class="wp-block-paragraph">Thay <strong><code>100</code> </strong>bằng id của máy ảo XPEnology đang chạy</p>



<p class="wp-block-paragraph">Tìm đến dòng khai báo HDD Passthrough, và bổ sung thêm thông số Serial vào, tương tự như bên dưới.</p>



<pre class="wp-block-preformatted"><code>sata3: /dev/disk/by-id/ata-WDC_WD10SPZX-75Z10T2_WXH1AC8EZTTH,size=976762584K,serial=WXH1AC8EZTTH</code></pre>



<h2 class="wp-block-heading">4. Hoàn thành</h2>



<p class="wp-block-paragraph">Dưới đây là thành quả của mình sau khi Passthrough HDD từ Proxmox vào máy ảo XPEnnology:1 USB HDD và 1 SATA HDD hoạt động ngon lành trên máy ảo XPEnology.</p>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="492" src="https://blntech.io.vn/wp-content/uploads/2026/04/image-59-1024x492.png" alt="" class="wp-image-5754" srcset="https://blntech.io.vn/wp-content/uploads/2026/04/image-59-1024x492.png 1024w, https://blntech.io.vn/wp-content/uploads/2026/04/image-59-300x144.png 300w, https://blntech.io.vn/wp-content/uploads/2026/04/image-59-768x369.png 768w, https://blntech.io.vn/wp-content/uploads/2026/04/image-59.png 1195w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption"><strong>Serial của HDD được passthrough hiện ra trong DSM 7.2</strong></figcaption></figure>



<figure class="wp-block-image aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="500" src="https://blntech.io.vn/wp-content/uploads/2026/04/image-60-1024x500.png" alt="" class="wp-image-5755" srcset="https://blntech.io.vn/wp-content/uploads/2026/04/image-60-1024x500.png 1024w, https://blntech.io.vn/wp-content/uploads/2026/04/image-60-300x146.png 300w, https://blntech.io.vn/wp-content/uploads/2026/04/image-60-768x375.png 768w, https://blntech.io.vn/wp-content/uploads/2026/04/image-60-1536x750.png 1536w, https://blntech.io.vn/wp-content/uploads/2026/04/image-60.png 1600w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Với cách passthrough HDD kèm serial number như hướng dẫn ở trên, bạn có thể detach HDD ra khỏi máy ảo và sau đó attach vào 1 máy ảo khác và thực hiện migration mà không lo bị mất dữ liệu. Mình đã test với 1 HDD SATA, và mọi thứ hoạt động bình thường.</p>



<p class="wp-block-paragraph">Tham khảo:</p>



<ul class="wp-block-list">
<li><a href="https://pve.proxmox.com/wiki/Passthrough_Physical_Disk_to_Virtual_Machine_(VM)" target="_blank" rel="noreferrer noopener">https://pve.proxmox.com/wiki/Passthrough_Physical_Disk_to_Virtual_Machine_(VM)</a></li>



<li><a href="https://dannyda.com/2020/08/26/how-to-passthrough-hdd-ssd-physical-disks-to-vm-on-proxmox-vepve/" target="_blank" rel="noreferrer noopener">https://dannyda.com/2020/08/26/how-to-passthrough-hdd-ssd-physical-disks-to-vm-on-proxmox-vepve/</a></li>
</ul>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p class="wp-block-paragraph">Nguồn: thuanbui</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
