User Tools

Site Tools


os:proxmox_ve:post-install_tasks

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
os:proxmox_ve:post-install_tasks [2025-01-18 10:11] Manuel Freios:proxmox_ve:post-install_tasks [2025-01-18 20:07] (current) Manuel Frei
Line 7: Line 7:
 <code> <code>
 rm /etc/apt/sources.list.d/pve-enterprise.list rm /etc/apt/sources.list.d/pve-enterprise.list
 +rm /etc/apt/sources.list.d/ceph.list
 </code> </code>
- 
-possible via GUI, disable 
  
 ===== Add No-Subscription Repository ===== ===== Add No-Subscription Repository =====
  
 +:!: This is NOT recommended for production use
  
 More information: [[https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_enterprise_repo|]] More information: [[https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_enterprise_repo|]]
 More information: [[https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo|]] More information: [[https://pve.proxmox.com/wiki/Package_Repositories#sysadmin_no_subscription_repo|]]
  
-cat /etc/apt/sources.list.d/ceph.list+<code bash> 
 +vi /etc/apt/sources.list.d/pve-no-subscription.list 
 +</code> 
 + 
 +<code - /etc/apt/sources.list.d/pve-no-subscription.list> 
 +deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription 
 +</code> 
 + 
 + 
 +https://docs.ceph.com/en/latest/releases/ 
 + 
 +<code bash> 
 +vi /etc/apt/sources.list.d/ceph-no-subscription.list 
 +</code> 
 + 
 +<code - /etc/apt/sources.list.d/ceph-no-subscription.list> 
 +deb http://download.proxmox.com/debian/ceph-squid bookworm no-subscription 
 +</code> 
  
  
Line 23: Line 41:
  
 ===== Add non-free Components ===== ===== Add non-free Components =====
 +
 +<code bash>
 +vi /etc/apt/sources.list
 +</code>
  
 <code - /etc/apt/sources.list> <code - /etc/apt/sources.list>
-root@mfr-vx00:~# cat /etc/apt/sources.list 
 deb http://ftp.ch.debian.org/debian bookworm main contrib non-free non-free-firmware deb http://ftp.ch.debian.org/debian bookworm main contrib non-free non-free-firmware
 deb http://ftp.ch.debian.org/debian bookworm-updates main contrib non-free non-free-firmware deb http://ftp.ch.debian.org/debian bookworm-updates main contrib non-free non-free-firmware
Line 31: Line 52:
 </code> </code>
  
-root@pve00:~# cat /etc/apt/sources.list +===== Install Microcode =====
-<code - /etc/apt/sources.list> +
-deb http://ftp.ch.debian.org/debian bookworm main contrib+
  
-deb http://ftp.ch.debian.org/debian bookworm-updates main contrib+This step requires that the non-free-firmware component is available. 
 + 
 +- install microcode (from non-free debian repo) intel-microcode (Intel CPUs) or amd64-microcode (AMD CPUs) 
 + 
 + 
 +bookworm/non-free-firmware
  
-# security updates +<code bash> 
-deb http://security.debian.org bookworm-security main contrib+apt install amd64-microcode
 </code> </code>
  
 +<code bash>
 +apt install intel-microcode
 +</code>
  
 +<code bash>
 +apt install $(awk '/^vendor_id/{if($NF == "AuthenticAMD") {$pkg = "amd64"} else if($NF == "GenuineIntel") {$pkg = "intel"}; printf "%s-microcode\n",$pkg; exit}' /proc/cpuinfo)
 +</code>
  
-===== Install Microcode =====+===== Install Locales =====
  
-This step requires that the non-free-firmware component is available.+<code bash> 
 +dpkg-reconfigure locales 
 +</code>
  
-- install microcode (from non-free debian repo) intel-microcode (Intel CPUs) or amd64-microcode (AMD CPUs)+===== Install Packages =====
  
  
-bookworm/non-free-firmware+===== Set Alternatives ===== 
 + 
 +<code bash> 
 +update-alternatives --config editor 
 +</code>
  
 ===== Enable PCI Passthrough ===== ===== Enable PCI Passthrough =====
  
-https://pve.proxmox.com/wiki/PCI_Passthrough+[[https://pve.proxmox.com/wiki/PCI_Passthrough|PCI Passthrough]]
  
-BIOS: IOMMU + IOMMU Remapping+===== Set MOTD ===== 
 + 
 +<code bash> 
 +>/etc/motd 
 +</code>
  
 +===== Enable GPU Passthrough =====
  
 +[[https://pve.proxmox.com/wiki/PCI_Passthrough#GPU_passthrough|GPU_passthrough]]
  
 # ------------------------------------------------------- # -------------------------------------------------------
os/proxmox_ve/post-install_tasks.1737191479.txt.gz · Last modified: 2025-01-18 10:11 by Manuel Frei