Proxmox: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
Line 72: Line 72:
* [https://www.intel.com/content/www/us/en/products/sku/232146/intel-core-i71370p-processor-24m-cache-up-to-5-20-ghz/specifications.html Intel » i7 » 1370P » 24M » 0L+08E+6P]
* [https://www.intel.com/content/www/us/en/products/sku/232146/intel-core-i71370p-processor-24m-cache-up-to-5-20-ghz/specifications.html Intel » i7 » 1370P » 24M » 0L+08E+6P]
* [https://www.intel.com/content/www/us/en/products/sku/232155/intel-core-i71360p-processor-18m-cache-up-to-5-00-ghz/specifications.html Intel » i7 » 1360P » 18M » 0L+08E+4P]
* [https://www.intel.com/content/www/us/en/products/sku/232155/intel-core-i71360p-processor-18m-cache-up-to-5-00-ghz/specifications.html Intel » i7 » 1360P » 18M » 0L+08E+4P]
* [https://www.intel.com/content/www/us/en/products/sku/232126/intel-core-i51340p-processor-12m-cache-up-to-4-60-ghz/specifications.html Intel » i5 » 1340P » 12M » 0L+08E+4P]


| valign="top" |
| valign="top" |

Latest revision as of 01:31, 7 November 2024

Ubuntu

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

lxc ls -f=json|jq -r '.[]|select(.state.status == "Running")|[.name, .status]|@tsv'
lxc ls -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