You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I finally got a bit further following the README.md more closely but still having an error.
error: no such device: /proxmox-ve_8.2-1.iso.
error: out of memory.
Loading Proxmox VE Installer ...
error: no server specified
Loading initial ramdisk ...
error: you need to load the kernel first.
See below for my grub.cfg
# Proxmox
menuentry 'Install Proxmox VE (Graphical)' --class debian --class gnu-linux --class gnu --class os {
set root='(hd0,1)'
set isofile="/proxmox-ve_8.2-1.iso"
set dri="free"
search --no-floppy -f --set=root $isofile
probe -u $root --set=abc
set pqr="/dev/disk/by-uuid/$abc"
loopback loop $isofile
echo 'Loading Proxmox VE Installer ...'
linux (loop)/boot/linux26 img_dev=$pqr img_loop=$isofile driver=$dri ro ramdisk_size=16777216 rw quiet splash=silent
echo 'Loading initial ramdisk ...'
initrd (loop)/boot/initrd.img
}
menuentry 'Install Proxmox VE (Terminal UI)' --class debian --class gnu-linux --class gnu --class os {
set root='(hd0,1)'
set isofile="/proxmox-ve_8.2-1.iso"
set dri="free"
search --no-floppy -f --set=root $isofile
probe -u $root --set=abc
set pqr="/dev/disk/by-uuid/$abc"
loopback loop $isofile
set background_color=black
echo 'Loading Proxmox VE Console Installer ...'
linux (loop)/boot/linux26 img_dev=$pqr img_loop=$isofile driver=$dri ro ramdisk_size=16777216 rw quiet splash=silent proxtui vga=788
echo 'Loading initial ramdisk ...'
initrd (loop)/boot/initrd.img
}
I'm trying to figure out the parameters required to add a proxmox bootmenu entry.
Do you have any pointers on what parameters I need for that to work?
In essence I basically made up the linux line, so looking for guidance on how to find the right arguments to add there 😊
The text was updated successfully, but these errors were encountered: