<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Proxmox VE on KTDEVX</title><link>/en/tags/proxmox-ve/</link><description>KTDEVX (Proxmox VE)</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>ktdevx@gmail.com
(Kaito Takemura)</managingEditor><lastBuildDate>Sun, 06 Apr 2025 23:47:16 +0900</lastBuildDate><atom:link href="/en/tags/proxmox-ve/index.xml" rel="self" type="application/rss+xml"/><item><title>Pass Through a Physical Disk to a Virtual Machine on Proxmox VE</title><link>/en/blog/pass-through-phisical-disk-to-vm-on-pve/</link><pubDate>Sun, 06 Apr 2025 23:47:16 +0900</pubDate><author>ktdevx@gmail.com (Kaito Takemura)</author><guid>/en/blog/pass-through-phisical-disk-to-vm-on-pve/</guid><description>&lt;p>This article explains how to pass through a physical disk to a virtual machine on Proxmox VE.&lt;/p>
&lt;h2 id="introduction" >
&lt;div>
&lt;a href="#introduction">
#
&lt;/a>
Introduction
&lt;/div>
&lt;/h2>
&lt;p>Before passing through a physical disk to the virtual machine, check the disks currently connected to it with the &lt;code>lsblk&lt;/code> command.&lt;/p>
&lt;pre tabindex="0">&lt;code>root@openmediavault:~# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 32G 0 disk
|-sda1 8:1 0 31G 0 part /
|-sda2 8:2 0 1K 0 part
`-sda5 8:5 0 975M 0 part [SWAP]
sr0 11:0 1 1024M 0 rom
&lt;/code>&lt;/pre>&lt;p>In this example, a 1 TB physical disk is connected through to the virtual machine.&lt;/p>
&lt;h2 id="check-the-disk" >
&lt;div>
&lt;a href="#check-the-disk">
#
&lt;/a>
Check the Disk
&lt;/div>
&lt;/h2>
&lt;p>Check the model number of the physical disk, then connect it to the server where Proxmox VE is installed.&lt;/p>
&lt;p>After connecting it, run &lt;code>ls -l /dev/disk/by-id/&lt;/code> in the Proxmox VE shell to check the disk.&lt;/p>
&lt;pre tabindex="0">&lt;code>root@pve:~# ls -l /dev/disk/by-id/
total 0
lrwxrwxrwx 1 root root 9 Apr 6 23:28 ata-TOSHIBA_DT01ACA100_X7P8MYTFS -&amp;gt; ../../sda
lrwxrwxrwx 1 root root 10 Apr 6 23:28 ata-TOSHIBA_DT01ACA100_X7P8MYTFS-part1 -&amp;gt; ../../sda1
lrwxrwxrwx 1 root root 10 Apr 5 22:12 dm-name-pve-root -&amp;gt; ../../dm-1
lrwxrwxrwx 1 root root 10 Apr 5 22:12 dm-name-pve-swap -&amp;gt; ../../dm-0
lrwxrwxrwx 1 root root 10 Apr 5 22:46 dm-name-pve-vm--100--disk--0 -&amp;gt; ../../dm-6
...
&lt;/code>&lt;/pre>&lt;p>&lt;code>/dev/disk/by-id/&lt;/code> is a directory containing symbolic links to storage devices on Linux.&lt;/p>
&lt;p>Names such as &lt;code>/dev/sdX&lt;/code> can change depending on the boot or connection order. Links in &lt;code>/dev/disk/by-id/&lt;/code> use device-specific IDs, so they are very useful when you want to always access the same disk.&lt;/p>
&lt;p>The path to the disk connected in this example was &lt;code>/dev/disk/by-id/ata-TOSHIBA_DT01ACA100_X7P8MYTFS&lt;/code>. Make a note of it.&lt;/p>
&lt;h2 id="pass-through-the-disk-to-the-virtual-machine" >
&lt;div>
&lt;a href="#pass-through-the-disk-to-the-virtual-machine">
#
&lt;/a>
Pass Through the Disk to the Virtual Machine
&lt;/div>
&lt;/h2>
&lt;p>Use the &lt;code>qm set&lt;/code> command to pass through a physical disk to the virtual machine.&lt;/p>
&lt;pre tabindex="0">&lt;code>qm set &amp;lt;VM ID&amp;gt; -scsi&amp;lt;SCSI interface number&amp;gt; &amp;lt;path to physical disk&amp;gt;
&lt;/code>&lt;/pre>&lt;p>The following configuration was used in this example.&lt;/p>
&lt;pre tabindex="0">&lt;code>root@pve:~# qm set 100 -scsi1 /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_X7P8MYTFS
update VM 100: -scsi1 /dev/disk/by-id/ata-TOSHIBA_DT01ACA100_X7P8MYTFS
&lt;/code>&lt;/pre>&lt;p>The specified physical disk is connected to the virtual machine with VM ID 100 through SCSI1.&lt;/p>
&lt;h2 id="check-the-passed-through-disk" >
&lt;div>
&lt;a href="#check-the-passed-through-disk">
#
&lt;/a>
Check the Passed-Through Disk
&lt;/div>
&lt;/h2>
&lt;p>After passing through the physical disk, restart the virtual machine and log in to its shell.&lt;/p>
&lt;p>Check the disk with the &lt;code>lsblk&lt;/code> command.&lt;/p>
&lt;pre tabindex="0">&lt;code>root@openmediavault:~# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 32G 0 disk
|-sda1 8:1 0 31G 0 part /
|-sda2 8:2 0 1K 0 part
`-sda5 8:5 0 975M 0 part [SWAP]
sdb 8:16 0 931.5G 0 disk
`-sdb1 8:17 0 931.5G 0 part
sr0 11:0 1 1024M 0 rom
&lt;/code>&lt;/pre>&lt;p>You can confirm that the physical disk has been passed through successfully.&lt;/p></description></item><item><title>Create a Virtual Machine (VM) on Proxmox VE</title><link>/en/blog/create-vm-in-proxmox-ve/</link><pubDate>Sat, 05 Apr 2025 14:38:12 +0900</pubDate><author>ktdevx@gmail.com (Kaito Takemura)</author><guid>/en/blog/create-vm-in-proxmox-ve/</guid><description>&lt;p>Proxmox VE (Virtual Environment) is an open-source virtualization platform based on KVM and LXC. It allows you to easily create and manage virtual machines and containers from a web UI.&lt;/p>
&lt;p>This article explains how to create a virtual machine on Proxmox VE.&lt;/p>
&lt;h2 id="download-an-iso-image" >
&lt;div>
&lt;a href="#download-an-iso-image">
#
&lt;/a>
Download an ISO Image
&lt;/div>
&lt;/h2>
&lt;p>Download the ISO image of the guest OS to install on the virtual machine.&lt;/p>
&lt;p>In this example, &lt;a href="https://www.openmediavault.org/">OpenMediaVault&lt;/a>, a NAS platform, is selected.&lt;/p>
&lt;h2 id="upload-the-iso-image" >
&lt;div>
&lt;a href="#upload-the-iso-image">
#
&lt;/a>
Upload the ISO Image
&lt;/div>
&lt;/h2>
&lt;p>You can upload an ISO image from the Proxmox VE management interface.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE ISO image management screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-upload-iso-1.webp">&lt;/p>
&lt;p>On the left side of the management interface, select local (&lt;!-- raw HTML omitted -->) under the target node, select ISO Images, and open the ISO image management screen.&lt;/p>
&lt;p>Select Upload to open the ISO image upload screen.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE ISO image upload screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-upload-iso-2.webp">&lt;/p>
&lt;p>Select and upload the downloaded ISO image. You can also enter the hash value published with the ISO image to verify it.&lt;/p>
&lt;p>Wait for the upload to complete.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE ISO image management screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-upload-iso-3.webp">&lt;/p>
&lt;p>The ISO image has been uploaded.&lt;/p>
&lt;p>In this example, the ISO image was uploaded from a PC. You can also select Download from URL and specify the URL of a download page to download the ISO image.&lt;/p>
&lt;h2 id="create-a-virtual-machine" >
&lt;div>
&lt;a href="#create-a-virtual-machine">
#
&lt;/a>
Create a Virtual Machine
&lt;/div>
&lt;/h2>
&lt;p>Select Create VM in the upper-right corner to open the virtual machine creation screen.&lt;/p>
&lt;h3 id="general-settings" >
&lt;div>
&lt;a href="#general-settings">
##
&lt;/a>
General Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-1.webp">&lt;/p>
&lt;p>Specify the node on which to create the virtual machine and enter its name. A sequential VM ID is assigned. Leave it unchanged unless you have a specific requirement.&lt;/p>
&lt;p>If you want the virtual machine to start automatically when Proxmox VE starts, select Start at boot.&lt;/p>
&lt;p>After configuring the settings, select Next to open the OS settings screen.&lt;/p>
&lt;h3 id="os-settings" >
&lt;div>
&lt;a href="#os-settings">
##
&lt;/a>
OS Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-2.webp">&lt;/p>
&lt;p>Configure the virtual machine&amp;rsquo;s OS.&lt;/p>
&lt;p>To use the uploaded ISO image, select Use CD/DVD disc image file (iso) and select the uploaded ISO image.&lt;/p>
&lt;p>Select the type of the virtual machine&amp;rsquo;s OS and select Next to open the system settings screen.&lt;/p>
&lt;h3 id="system-settings" >
&lt;div>
&lt;a href="#system-settings">
##
&lt;/a>
System Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-3.webp">&lt;/p>
&lt;p>Configure the system settings.&lt;/p>
&lt;p>There is no need to change these settings unless you have a specific requirement.&lt;/p>
&lt;p>If you will install the QEMU guest agent in the virtual machine, select Qemu Agent.&lt;/p>
&lt;p>The QEMU guest agent runs inside the virtual machine and provides a mechanism for executing commands on the virtual machine through libvirt from Proxmox VE.&lt;/p>
&lt;p>After configuring the settings, select Next to open the disk settings screen.&lt;/p>
&lt;h3 id="disk-settings" >
&lt;div>
&lt;a href="#disk-settings">
##
&lt;/a>
Disk Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-4.webp">&lt;/p>
&lt;p>Configure the disk settings.&lt;/p>
&lt;p>For the bus/device setting, select SCSI unless you have a specific requirement. This connects the disk to the SCSI controller selected in the system settings. Selecting VirtIO SCSI or VirtIO SCSI Single enables faster disk access.&lt;/p>
&lt;p>Select the storage and enter the disk size, then select Next to open the CPU settings screen.&lt;/p>
&lt;h3 id="cpu-settings" >
&lt;div>
&lt;a href="#cpu-settings">
##
&lt;/a>
CPU Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-5.webp">&lt;/p>
&lt;p>Configure the CPU settings.&lt;/p>
&lt;p>Here, you mainly specify the number of virtual cores assigned to the virtual machine. The total number of assignable cores is determined by the number of sockets multiplied by the number of cores.&lt;/p>
&lt;p>Setting the number of sockets to 2 or more makes the virtual machine appear to have multiple CPUs. Normally, 1 is sufficient.&lt;/p>
&lt;p>The type setting allows you to select the CPU type presented to the virtual machine. Leave it unchanged unless you have a specific requirement.&lt;/p>
&lt;p>After configuring the settings, select Next to open the memory settings screen.&lt;/p>
&lt;h3 id="memory-settings" >
&lt;div>
&lt;a href="#memory-settings">
##
&lt;/a>
Memory Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-6.webp">&lt;/p>
&lt;p>Configure the memory settings.&lt;/p>
&lt;p>Enter the amount of memory to allocate to the virtual machine.&lt;/p>
&lt;p>Ballooning is a feature that dynamically adjusts the memory allocated to the virtual machine. Although it can save resources, it can also make performance unstable, so disabling Ballooning Device is recommended.&lt;/p>
&lt;p>After configuring the settings, select Next to open the network settings screen.&lt;/p>
&lt;h3 id="network-settings" >
&lt;div>
&lt;a href="#network-settings">
##
&lt;/a>
Network Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-7.webp">&lt;/p>
&lt;p>Configure the network settings.&lt;/p>
&lt;p>Select the bridge you want to use. Unless you have a specific requirement, leave the model set to VirtIO.&lt;/p>
&lt;p>After configuring the settings, select Next to open the confirmation screen.&lt;/p>
&lt;h3 id="review-the-settings" >
&lt;div>
&lt;a href="#review-the-settings">
##
&lt;/a>
Review the Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE virtual machine creation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-create-vm-8.webp">&lt;/p>
&lt;p>The configured settings are displayed. If everything is correct, select Finish to complete the virtual machine configuration.&lt;/p>
&lt;h2 id="install-the-guest-os" >
&lt;div>
&lt;a href="#install-the-guest-os">
#
&lt;/a>
Install the Guest OS
&lt;/div>
&lt;/h2>
&lt;p>&lt;img alt="Proxmox VE virtual machine management screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-install-os-1.webp">&lt;/p>
&lt;p>The virtual machine has been created on the node specified in the general settings.&lt;/p>
&lt;p>Select Start in the upper-right corner, then select Console to open the guest OS installation screen.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE guest OS installation screen" src="https://www.ktdevx.com/ja/blog/create-vm-in-proxmox-ve/images/pve-install-os-2.webp">&lt;/p>
&lt;p>Install the guest OS as usual.&lt;/p></description></item><item><title>Install Proxmox VE</title><link>/en/blog/install-proxmox-ve/</link><pubDate>Sun, 30 Mar 2025 11:10:09 +0900</pubDate><author>ktdevx@gmail.com (Kaito Takemura)</author><guid>/en/blog/install-proxmox-ve/</guid><description>&lt;p>Proxmox VE (Virtual Environment) is an open-source virtualization platform based on KVM and LXC. It allows you to easily create and manage virtual machines and containers from a web UI.&lt;/p>
&lt;p>This article explains how to install Proxmox VE.&lt;/p>
&lt;h2 id="introduction" >
&lt;div>
&lt;a href="#introduction">
#
&lt;/a>
Introduction
&lt;/div>
&lt;/h2>
&lt;p>In this example, Proxmox VE is installed on the &lt;a href="https://www.gmktec.com/products/amd-ryzen-7-5825u-mini-pc-nucbox-m5-plus">NucBox M5 Plus&lt;/a>, a mini PC sold by GMKtec.&lt;/p>
&lt;script type="text/javascript">(function(b,c,f,g,a,d,e){b.MoshimoAffiliateObject=a;b[a]=b[a]||function(){arguments.currentScript=c.currentScript||c.scripts[c.scripts.length-2];(b[a].q=b[a].q||[]).push(arguments)};c.getElementById(a)||(d=c.createElement(f),d.src=g,d.id=a,e=c.getElementsByTagName("body")[0],e.appendChild(d))})(window,document,"script","//dn.msmstatic.com/site/cardlink/bundle.js?20220329","msmaflink");msmaflink({"n":"GMKtec NucBox M5 Plus","b":"GMKtec","t":"NucBox M5 Plus","d":"https:\/\/m.media-amazon.com","c_p":"\/images\/I","p":["\/41vR0Tr81-L._SL500_.jpg","\/513cIiEP24L._SL500_.jpg","\/51y7Jy80gjL._SL500_.jpg","\/41Z+vuOobhL._SL500_.jpg","\/41M5cVWuDTL._SL500_.jpg","\/41DjW5RaV+L._SL500_.jpg","\/41TK+siBCKL._SL500_.jpg","\/41MlY4V1GHL._SL500_.jpg","\/41+kH9qwTXL._SL500_.jpg"],"u":{"u":"https:\/\/www.amazon.co.jp\/dp\/B0CCSLMGM1","t":"amazon","r_v":""},"v":"2.1","b_l":[{"id":1,"u_tx":"Amazonで見る","u_bc":"#f79256","u_url":"https:\/\/www.amazon.co.jp\/dp\/B0CCSLMGM1","a_id":4972695,"p_id":170,"pl_id":27060,"pc_id":185,"s_n":"amazon","u_so":1},{"id":2,"u_tx":"楽天市場で見る","u_bc":"#f76956","u_url":"https:\/\/search.rakuten.co.jp\/search\/mall\/GMKtec%20NucBox%20M5%20Plus\/","a_id":4972697,"p_id":54,"pl_id":27059,"pc_id":54,"s_n":"rakuten","u_so":2},{"id":3,"u_tx":"Yahoo!ショッピングで見る","u_bc":"#66a7ff","u_url":"https:\/\/shopping.yahoo.co.jp\/search?first=1\u0026p=GMKtec%20NucBox%20M5%20Plus","a_id":4972698,"p_id":1225,"pl_id":27061,"pc_id":1925,"s_n":"yahoo","u_so":3}],"eid":"JoQuJ","s":"s"});&lt;/script>&lt;div id="msmaflink-JoQuJ">リンク&lt;/div>
&lt;p>The specifications of the NucBox M5 Plus are as follows.&lt;/p>
&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Manufacturer&lt;/th>
&lt;th>GMKtec&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>Model&lt;/td>
&lt;td>NucBox M5 Plus&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>CPU&lt;/td>
&lt;td>AMD Ryzen 7 5825U (8 cores, 16 threads, up to 4.50GHz)&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Memory&lt;/td>
&lt;td>16GB (8GB x 2)&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Storage&lt;/td>
&lt;td>512GB SSD&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Graphics&lt;/td>
&lt;td>AMD Radeon Graphics (integrated into the CPU)&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Network&lt;/td>
&lt;td>2 x 2.5Gb LAN, Wi-Fi 6E, Bluetooth 5.2&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Interfaces&lt;/td>
&lt;td>1 x USB Type-C (video output supported), 2 x USB3.2 Gen1, 2 x USB2.0, 1 x HDMI, 1 x DisplayPort, audio jack (3.5mm 4-pole)&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Expansion slots&lt;/td>
&lt;td>3 x M.2 slots (2 for storage, 1 for Wi-Fi)&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="download-proxmox-ve" >
&lt;div>
&lt;a href="#download-proxmox-ve">
#
&lt;/a>
Download Proxmox VE
&lt;/div>
&lt;/h2>
&lt;p>Download the ISO image from the &lt;a href="https://www.proxmox.com/en/downloads/proxmox-virtual-environment/iso">Proxmox VE download page&lt;/a>. In this example, Proxmox VE 8.3 was downloaded.&lt;/p>
&lt;h2 id="create-an-installation-usb-drive" >
&lt;div>
&lt;a href="#create-an-installation-usb-drive">
#
&lt;/a>
Create an Installation USB Drive
&lt;/div>
&lt;/h2>
&lt;p>Write the downloaded ISO image to a USB drive. Use an image-writing tool such as Win32 Disk Imager to write it to the USB drive.&lt;/p>
&lt;p>&lt;img alt="Win32 Disk Imager" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/win32-disk-imager-proxmox-ve.webp">&lt;/p>
&lt;p>For details on using Win32 Disk Imager, see &lt;a href="https://www.ktdevx.com/en/blog/install-win32-disk-imager/">How to Install and Use Win32 Disk Imager&lt;/a>.&lt;/p>
&lt;h2 id="install-proxmox-ve" >
&lt;div>
&lt;a href="#install-proxmox-ve">
#
&lt;/a>
Install Proxmox VE
&lt;/div>
&lt;/h2>
&lt;p>Connect the USB drive to the PC on which you want to install Proxmox VE, start the PC, and boot from the USB drive. The Proxmox VE installation screen is displayed.&lt;/p>
&lt;h3 id="select-the-installation-type" >
&lt;div>
&lt;a href="#select-the-installation-type">
##
&lt;/a>
Select the Installation Type
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer1.webp">&lt;/p>
&lt;p>The installation types are displayed. Select Install Proxmox VE (Graphical) to proceed with the GUI installation.&lt;/p>
&lt;h3 id="accept-the-license-agreement" >
&lt;div>
&lt;a href="#accept-the-license-agreement">
##
&lt;/a>
Accept the License Agreement
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer2.webp">&lt;/p>
&lt;p>The Proxmox VE license agreement is displayed. If there is no issue, select I agree to continue.&lt;/p>
&lt;h3 id="configure-the-installation-target" >
&lt;div>
&lt;a href="#configure-the-installation-target">
##
&lt;/a>
Configure the Installation Target
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer3.webp">&lt;/p>
&lt;p>Select the installation target for Proxmox VE. You can configure details such as the file system from Options.&lt;/p>
&lt;p>After selecting the target, press Next to continue.&lt;/p>
&lt;h3 id="configure-the-country-time-zone-and-keyboard-layout" >
&lt;div>
&lt;a href="#configure-the-country-time-zone-and-keyboard-layout">
##
&lt;/a>
Configure the Country, Time Zone, and Keyboard Layout
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer4.webp">&lt;/p>
&lt;p>Configure the country, time zone, and keyboard layout. If the system is connected to the internet at this point, these fields are filled in automatically.&lt;/p>
&lt;p>After configuring them, press Next to continue.&lt;/p>
&lt;h3 id="configure-the-administrator-password-and-email-address" >
&lt;div>
&lt;a href="#configure-the-administrator-password-and-email-address">
##
&lt;/a>
Configure the Administrator Password and Email Address
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer5.webp">&lt;/p>
&lt;p>Configure the password and email address for the administrator user (&lt;code>root&lt;/code>). Enter the password twice for confirmation.&lt;/p>
&lt;p>After configuring them, press Next to continue.&lt;/p>
&lt;h3 id="configure-the-network" >
&lt;div>
&lt;a href="#configure-the-network">
##
&lt;/a>
Configure the Network
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer6.webp">&lt;/p>
&lt;p>Configure the network interface, hostname, IP address, and other settings.&lt;/p>
&lt;p>After configuring them, press Next to continue.&lt;/p>
&lt;h3 id="review-the-settings" >
&lt;div>
&lt;a href="#review-the-settings">
##
&lt;/a>
Review the Settings
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer7.webp">&lt;/p>
&lt;p>The settings configured so far are displayed. If everything is correct, select Install to start the installation.&lt;/p>
&lt;h3 id="installation" >
&lt;div>
&lt;a href="#installation">
##
&lt;/a>
Installation
&lt;/div>
&lt;/h3>
&lt;p>&lt;img alt="Proxmox VE installer" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-installer8.webp">&lt;/p>
&lt;p>Wait for the installation to complete. When it is complete, remove the USB drive and restart the PC. If everything went well, the shell login screen is displayed.&lt;/p>
&lt;h3 id="access-the-proxmox-ve-management-interface" >
&lt;div>
&lt;a href="#access-the-proxmox-ve-management-interface">
##
&lt;/a>
Access the Proxmox VE Management Interface
&lt;/div>
&lt;/h3>
&lt;p>Finally, access the Proxmox VE management interface. From a web browser, go to &lt;code>https://&amp;lt;configured-IP-address&amp;gt;:8006&lt;/code>.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE login screen" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-web1.webp">&lt;/p>
&lt;p>The login screen is displayed. Log in with &lt;code>root&lt;/code> as the username and the password configured during installation.&lt;/p>
&lt;p>&lt;img alt="Proxmox VE management interface" src="https://www.ktdevx.com/ja/blog/install-proxmox-ve/images/proxmox-ve-web2.webp">&lt;/p>
&lt;p>You can now log in to the Proxmox VE management interface. The Proxmox VE installation is complete.&lt;/p></description></item></channel></rss>