This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## NAMESPACE ## | |
| --- | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: open-webui | |
| ## STORAGE ## | |
| --- | |
| apiVersion: v1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # IMPORTANT NOTE: This seems to only work with the Tesla Data Center driver 551.78. Source: https://www.reddit.com/r/PleX/comments/15ukivg/comment/lg0uxv9/. | |
| param ( | |
| [switch]$apply, | |
| [switch]$revert | |
| ) | |
| # Function to locate the correct registry path based on DriverDesc | |
| function Find-NVIDIARegistryPath { | |
| param ([string]$controlSet) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export OLDHOST="ubuntu-server"; export NEWHOST="K"; sudo sed -i 's/$OLDHOST/$NEWHOST/g' /etc/hosts; sudo hostnamectl set-hostname $NEWHOST |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Made by Justin Marwad 2022 | |
| # Install ex: ./Install-Wazuh.ps1 -server [wazuh_ip] -name [name_wazuh_sees] -install | |
| # Update cert ex: ./Install-Wazuh.ps1 -server [wazuh_ip] -name [name_wazuh_sees] | |
| # Restart ex: ./Install-Wazuh.ps1 -restart | |
| # Uninstall ex: ./Install-Wazuh.ps1 uninstall | |
| param ( | |
| [string]$server = $null, | |
| [string]$name = [System.Net.Dns]::GetHostName(), |