Skip to main content

Home Lab - Part 5: Create a Virtual Server in Proxmox

·5 mins
Table of Contents

Overview
#

This post covers the basic steps required to provision a virtual machine (VM) running Ubuntu Server in Proxmox. This can be achieved in either a single or multi node Proxmox environment, and does not require a cluster to be configured.

Requirements
#

  • An installed and configured Proxmox node.
  • Internet access from either the Proxmox, or local computer with access to Proxmox.
  • Downloaded Ubuntu ISO file.
  • Optional: Configured VLAN in firewall/OPNsense.

Hardware Update (Informational)
#

In preparation for joining the Proxmox nodes to a cluster, USB ethernet adapters have been added to each node to be used as dedicated virtual machine networks/VLANs. This will allow for keeping the onboard NIC dedicated to the Proxmox node traffic only, reducing “noise” within the network.

Although USB ethernet adapters are not generally considered suitable for heavy or production purposes due to flaky reliability, they will suffice until PCI-e network adapters that fit in the small P330 can be sourced.

Edit (2026-05-20): The USB to Ethernet adapters I purchased tend to heat up and drop packets under heavy load. PCI-e risor adapters (part number 01AJ940) can be used to fit low profile network cards.

Latest update of home lab server stack.


Upload/Download VM Operating System
#

This step can be achieved by several methods. The target operating system for your VM can be downloaded outside of Proxmox (local machine) and uploaded to the node via the web interface, or can be downloaded from the Proxmox web interface itself.

  1. Login to the Proxmox web interface, select local storage from the left side navigation panel, then select ISO Images.
  2. Select either Upload or Download from URL.
  3. Select either an ISO file previously downloaded , or enter the URL path for an ISO download.
  4. Depending on your method, click either the Upload or Download button.

Option 1: Pre-Downloaded ISO

Image showing operating system ISO upload to Proxmox.

Option 2: Download via URL

Image showing operating system ISO upload to Proxmox.

Once the upload (or download) has completed, the OS image should now be listed under ISO Images.

Image showing operating system ISO upload to Proxmox.


Optional: Configure VM Network/VLAN
#

This step ensures that VMs will use their own network/VLAN, separate form the Proxmox node network which is used primarily for cluster traffic.

NOTE: If your Proxmox node has only a single NIC, some content in this section may not apply. The default network connection (vmbr0) for single NIC devices can be used, however it is typically reserved for dedicated Proxmox node network. This example uses an existing VLAN configured in an OPNsense firewall/router with a USB to Ethernet adapter.

  1. Select the Proxmox node and navigate to the System > Network menu.
  2. Depending on your setup, you may see either one or more items labelled Network Device. These are physical network adapters. In this example, the device eno1 represents the onboard ethernet network adapter, with enx00e04c424a99 being an additional USB ethernet adapter.

Image showing network configuration in Proxmox.

  1. The Linux Bridge acts as a virtual switch, connecting virtual machines (VMs) to the physical network, while a network device (like a physical network card or a bond of multiple network cards) is the actual hardware interface.
  2. Click the Create dropdown button and select Linux Bridge.
  3. Enable Autostart and VLAN aware options for the connection.
  4. Bridge the new connection to the USB ethernet adapter under the Bridge Ports field.
  5. Add a meaningful comment along with the accepted VLAN IDs matching that in OPNsense.

Image showing network configuration in Proxmox.

If DHCP is enabled for the OPNsense VLAN20, the new VM should receive an IP address once it has booted.


Create Virtual Machine (VM)
#

With the OS image file now available on the Proxmox node, we can proceed with creating the VM.

  1. From the Proxmox web interface, select the Proxmox node and right-click to display a menu.
  2. Select the option Create VM - alternatively click the Create VM button from the top navigation panel.

Image showing VM creation steps in Proxmox.

  1. Select the Proxmox node where this VM will be located.
  2. Leaving the ID as the provided default, provide the VM with a name.
  3. Using the Advanced tick box will allow more further configuration if required.
  4. Click Next.

Image showing VM creation steps in Proxmox.

  1. On the OS settings tab, select the ISO file downloaded previously and click Next.

Image showing VM creation steps in Proxmox.

  1. On the System settings tab, make any changes that may be recommended for your chosen OS and click Next to continue.

Image showing VM creation steps in Proxmox.

  1. Define the desired disk size, adding any additional disks if required.
  2. By default, the option for Backup is enabled, disable this option if not necessary.
  3. Click Next.

Image showing VM creation steps in Proxmox.

  1. Set the desired number of CPU sockets and cores to be recognized by the VM. Note that this option provides access to the number of host cores, and is the number the guest OS will see. It does not “dedicate” the cores to the VM exclusively.
  2. Setting the CPU Type to “host” allows the VM to access the CPU features made available by the processor installed in the Proxmox node.

Image showing VM creation steps in Proxmox.

  1. Specify the required amount of memory (RAM). Unlike CPU, this assignment does allocate the entire amount specified to the VM (unless ballooning is enabled and river installed).
  2. Optional: The Ballooning Device option will allow Proxmox to reclaim unused memory from idle VMs and reallocate it to other VMs or the host system when needed. This requires additional drivers installed in the guest VM operating system.
  3. Click Next.

Image showing VM creation steps in Proxmox.

  1. If the previous section was skipped, select the default network bridge available - otherwise select the newly created bridge, along with the VLAN tag ID.
  2. Click Next.

Image showing VM creation steps in Proxmox.

  1. Review the configuration on the final screen. Click Finish to create the VM.

Image showing VM creation steps in Proxmox.


Testing the VM
#

With the VM now created, power it on to test the configuration and boot into the ISO image.

  1. Right click the VM listed in the left side navigation panel.
  2. Click Start.

Image showing the testing of a VM post-provisioning in Proxmox.

  1. When the VM is booted up, proceed through to the installer to confirm that the virtual NIC attached to the VM received an IP address from DHCP.
  2. If the VM does not receive an IP address, check the setting on your firewall to confirm that service is enabled for providing addressing on the interface (either VLAN or LAN).

Image showing the testing of a VM post-provisioning in Proxmox.


Next Steps
#

This concludes the guide for setting up the first VM in Proxmox. The next part in the series will provide the steps required to configure clustering, allowing for centralized management of the Proxmox nodes, and further capabilities such as high availability and replication.


Cover photo by Dan Taylor on Unsplash with Proxmox logo overlay.

Related