Last active
October 20, 2024 21:30
-
-
Save MakiseKurisu/3f69d21c98d02e45e766e7416f164553 to your computer and use it in GitHub Desktop.
Mount pmxcfs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ./mnt | |
mount /dev/pve/root ./mnt | |
cd mnt | |
mount -t proc proc proc/ | |
mount -t sysfs sys sys/ | |
mount -o bind /dev dev/ | |
cd .. | |
chroot ./mnt ./bin/bash | |
pmxcfs | |
/bin/nano /etc/pve/nodes/{node name}/qemu-server/100.conf |
Thanks for this. Proxmox really needs to document this stuff, sometimes this is necessary.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is exactly what I needed to get /etc/pve populated/mounted and re-gain access to my server after my ISP got new IP ranges. Thank you for posting this!