Promox Ubuntu server
How to setup a virtuel machine with Ubuntu server in proxmox
Step-by-Step Installation Guide
Obtain the ISO file for your Ubuntu server by downloading it first. link below
In the Proxmox web interface, go to your node, default pve mine is nuc, then local (storage name) -> ISO Images -> Upload.
Click Create VM at the top right.
Pick a VM ID, type in a name for your VM, and then click Next.
Select the ISO image you want to use.
Now pick the machine type. I go with Q35 instead of i440FX because it handles PCIe passthrough and newer hardware better. And set a check mark in Qemu-agent
Select storage (if your got more than one disk) and size, set at check mark in Discard and SSD emulation.
Allocate cores (2-4 recommended for general use).
Assign system memory.
The required memory varies based on workload, starting from 1024 MB and increasing as needed
Set the network, leave default settings (usually vmbr0) if you need to set a lan its here.
Uncheck start after created. Review and click Finish.
All done now Promox is up and running with a VM.
Start and Install Operating System
Select your new VM in the left menu.
Then click Start, and click on Console to view the VM screen.
Select Try or Install Ubuntu Server
Choose your desired language.
Update the installer
Select your keyboard layout
Select ubuntu Server
Now time to set the IP set it manual Select edit IPv4
Then manual
Set the subnet /24 explain, address, gateway, and name server DNS and save
Hit Done
For proxy just hit done
Wait a couple of secs to update adn hit done.
Select use an entire disk
Confirm the storage setup
Select continue
Type in a name, server name, user name and make a password then hit done
Select skip for now and continue
Set a check mark in Install OpenSSH server
I skip this but if there are any 3 party snaps
Now reboot
Hit enter to unmount the cdrom
SSH to the server i use Putty as SSH client - Accept the cert.
Or use the console - just note you cant copy paste there
Login with user name and password
Update the system
1
sudo apt update && sudo apt upgrade -y
Install the qemu-guest-agent with the command below.
1
sudo apt install qemu-guest-agent -y
A reboot is need for the updates and qemu guest agent to take effect.
1
sudo reboot
All done now we have a ubuntu server running.



































