Proxmox

1225 readers
1 users here now

Proxmox VE is a complete, open-source server management platform for enterprise virtualization. It tightly integrates the KVM hypervisor and Linux Containers (LXC), software-defined storage and networking functionality, on a single platform. With the integrated web-based user interface you can manage VMs and containers, high availability for clusters, or the integrated disaster recovery tools with ease.

Proxmox VE Official site

K3S on Proxmox LXC

founded 2 years ago
MODERATORS
1
 
 

Not finding a lot of info on using Proxmox import wizard to extract VMs from an ESXi free license host. I can add the host as storage and see the VMs but it looks like it's failing afterwards due to possibly some kind of rate limit error? But I know the free version API is either closed or not available. Any ideas? Thanks!

2
 
 

Went through pve update today and had a message saying

Removable bootloader found at '/boot/efi/EFI/BOOT/BOOTX64.efi', but GRUB packages not set up to update it! Run the following command:

echo 'grub-efi-amd64 grub2/force_efi_extra_removable boolean true' | debconf-set-selections -v -u

Then reinstall GRUB with 'apt install --reinstall grub-efi-amd64'

To anyone facing this message: don’t forget! See here in the Proxmox forums

3
4
 
 

I recently needed to set up Tailscale in an AlmaLinux 9 LXC container running on my Proxmox 8.2 server. Following the official instructions from Tailscale's RHEL 9 guide and even trying their Linux install script, I ran into some issues. The main problem turned out to be missing TUN device support in the LXC container.

I had to edit the LXC container configuration on the Proxmox host:

nano /etc/pve/lxc/<container-id>.conf

And add these lines:

lxc.cgroup2.devices.allow: c 10:200 rwm

lxc.mount.entry: /dev/net/tun dev/net/tun none bind,create=file

Here is the article in case is useful for someone else.

5
 
 
6
 
 

There is some space next to the British flag. I am going to start working on it

7
8
-1
submitted 11 months ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 
 

proxmox ZFS uses Systemd boot by default. To switch to grub, run

proxmox-boot-tool init /dev/sda2 grub

Do this for each boot disk. Now you can edit /etc/default/grub and have it actually work

9
 
 

There are two main solutions you can use.

The first one is the quickest and it is to go into storage and create a directory. Set the mount point to a directory of your choice and then choose ISO storage and template storage. I would keep disk storage disabled as directory storage is not good for large data

The second option is to create a NFS share and then mount it in proxmox. This has the benefit of syncing templates across hosts but it does take more setup.