Proxmox: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 50: Line 50:
* [https://forum.proxmox.com/threads/generic-solution-when-install-gets-framebuffer-mode-fails.111577/ Proxmox » Install » FrameBuffer Mode Fails]
* [https://forum.proxmox.com/threads/generic-solution-when-install-gets-framebuffer-mode-fails.111577/ Proxmox » Install » FrameBuffer Mode Fails]
* [https://github.com/Telmate/terraform-provider-proxmox Proxmox » PVE » Terraform Provider Plugin]
* [https://github.com/Telmate/terraform-provider-proxmox Proxmox » PVE » Terraform Provider Plugin]
* [https://vsys.host/how-to/how-to-install-proxmox-on-debian-12-bookworm-2 Proxmox » Install » Debian 12 Bookworm]
* [https://pve.proxmox.com/pve-docs/ Proxmox » PVE » Documentation]
* [https://pve.proxmox.com/pve-docs/ Proxmox » PVE » Documentation]
* [https://pve.proxmox.com/pve-docs/api-viewer/ Proxmox » PVE » API » Viewer]
* [https://pve.proxmox.com/pve-docs/api-viewer/ Proxmox » PVE » API » Viewer]

Revision as of 17:46, 18 October 2024

Ubuntu

lxc image list images:debian bookworm $(dpkg --print-architecture)
lxc list -f=json|jq -r '.[]|select(.name == "proxmox")|.name'
lxc launch images:debian/12 proxmox --vm

lxc list -f=json|jq -r '.[]|select(.state.status == "Running")|[.name, .status]|@tsv'
lxc list -f=json|jq -r '.[]|select(.state.status == "Running")|.name'

cat << EXE | lxc exec proxmox -- bash
apt-get update;echo
apt list -a --upgradable; apt-get upgrade -y
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
EXE

Ubuntu » LXD

cat << EXE | lxc exec proxmox -- sudo bash
curl -fsSL http://download.proxmox.com/debian/proxmox-release-bookworm.gpg\
 | gpg --dearmor -o /etc/apt/trusted.gpg.d/proxmox.gpg >/dev/null

DISTRIBUTION=\$(. /etc/os-release && echo "\${VERSION_CODENAME}")
cat << SRC | tee /etc/apt/sources.list.d/proxmox.list >/dev/null
deb [arch=\$(dpkg --print-architecture)\
 signed-by=/etc/apt/trusted.gpg.d/proxmox.gpg]\
 http://download.proxmox.com/debian/pve \${DISTRIBUTION} pve-no-subscription
SRC

apt-get update;echo
apt list -a --upgradable
EXE

References