No drivers need to be installed on the proxmox, from now called host.
Find GIDs of video and render group on host:
cat /etc/group | grep video
cat /etc/group | grep render
| 1. Add a virtual serial port to the VM using PVE Web GUI and restart the VM | |
| 2. Enable and start the virtual serial port on VM, change tty number as needed (Reference: https://askubuntu.com/a/621209/838946) | |
| $ sudo systemctl enable serial-getty@ttyS0.service | |
| $ sudo systemctl start serial-getty@ttyS0.service | |
| 3. Done! You can now select xterm.js in the PVE Web GUI |
| apt update && apt upgrade -y | |
| apt install apt-transport-https curl vim wget sudo gnupg2 -y | |
| echo "deb https://downloads.plex.tv/repo/deb public main" | tee /etc/apt/sources.list.d/plexmediaserver.list | |
| curl https://downloads.plex.tv/plex-keys/PlexSign.key | apt-key add - | |
| apt update | |
| apt install plexmediaserver | |
| systemctl status plexmediaserver | |
| systemctl enable plexmediaserver | |
| apt update && apt install -y curl gpg | |
| mkdir -p /etc/apt/keyrings |
| ethtool -K enp5s0 rx-vlan-offload off | |
| ethtool -s enp5s0 autoneg off speed 2500 | |
| ethtool -s enp5s0 autoneg off speed 100 | |
| ethtool -s enp5s0 autoneg off speed 1000 | |
| $ cat /etc/network/interfaces | |
| ------------------------------------------- | |
| auto lo |
| sudo zypper rm $(zypper pa --unneeded | awk '/i / {print $3}' FS='|' | uniq | tr -d ' ') |
| #!/bin/bash | |
| # IPSec watchdog for OracleVPSTunnel | |
| # chkconfig: 2345 90 10 | |
| CONNECTION_NAME="VPSToHomeTunnel" | |
| LOG_FILE="/var/log/ipsec-watchdog.log" | |
| PID_FILE="/var/run/ipsec-watchdog.pid" | |
| MAX_RETRIES=3 | |
| get_tunnel_status() { |
On your Proxmox host run to see exactly where your driver is being loaded from:
modinfo amdgpu | grep filenameIf it says: /lib/modules/7.x.x-x-pve/kernel/drivers/gpu/drm/amd/amdgpu/amdgpu.ko -> This is the native Proxmox driver. Safe to remove the DKMS packages if installed, if not the skip to point #4.
If it says /updates/dkms/amdgpu.ko, then the DKMS actually loaded, should be rare. Do: