How to setup Proxmox to use Keycloak as authentication realm.
root@proxmox:/etc/pve# cat domains.cfg
pam: pam
comment Linux PAM standard authentication| # %% | |
| import os | |
| from datetime import datetime | |
| import csv | |
| import pandas as pd | |
| from pathlib import Path | |
| # Inputs | |
| directory = 'C:\OneNote' | |
| name_length = 15 |
Here's a Systemd service that will automatically disable the "No valid subscription" nagware dialog in Proxmox VE. I got the snippet to disable the dialog from this article from John's Computer Services.
/etc/systemd/system/proxmox-patcher.service/root/proxmox-patcher.shchmod +x /root/proxmox-patcher.sh as rootsystemctl enable proxmox-patcher.service as root| Windows Registry Editor Version 5.00 | |
| ;USE AT YOUR OWN RISK! | |
| ;USE AT YOUR OWN RISK! | |
| ;USE AT YOUR OWN RISK! | |
| ;Improves system responsiveness and network speed. | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile] | |
| "SystemResponsiveness"=dword:00000001 |
| netsh interface teredo set state disabled | |
| netsh interface 6to4 set state disabled | |
| netsh winsock reset | |
| netsh interface isatap set state disable | |
| netsh int tcp set global timestamps=disabled | |
| netsh int tcp set heuristics disabled | |
| netsh int tcp set global autotuninglevel=disable | |
| netsh int tcp set global congestionprovider=ctcp | |
| netsh int tcp set supplemental Internet congestionprovider=CTCP | |
| netsh int tcp set global chimney=disabled |
| # Login | |
| Login-AzureRmAccount | |
| # Variables for common values | |
| $location = "westeurope" | |
| $resourceGroup = "demo-resgroup-0" | |
| $vmName = "demovm-0" | |
| $publicIP = "spublicip-1" | |
| $subnet = "subnet-1" | |
| $vnet = "vnet-1" |
| echo off | |
| cls | |
| echo [-] Flash Player Remover for Windows 10 with Edge Browser. | |
| takeown /f C:\Windows\SysWOW64\Macromed\Flash\*.* | |
| takeown /f C:\Windows\System32\Macromed\Flash\*.* | |
| cacls C:\Windows\SysWOW64\Macromed\Flash\*.* /E /T /G %UserDomain%\%UserName%:F | |
| cacls C:\Windows\System32\Macromed\Flash\*.* /E /T /G %UserDomain%\%UserName%:F |