| 1 | sed -Ezi.bak "s/(Ext.Msg.show\(\{\s+title: gettext\('No valid sub)/void\(\{ \/\/\1/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service |
mreschke
Joined 6 months ago
| 1 | # mReschke Python .gitignore file standard |
| 2 | # Latest Version https://gist.mreschke.net/mreschke/5b20c8b75bf5407785c8a35d7bdbe17a |
| 3 | # mReschke 2020-11-17 |
| 4 | |
| 5 | # NOTES: |
| 6 | # Folders should be denoted with a trailing / |
| 7 | # /env/ denotes only the root level ./env folder be ignored |
| 8 | # env/ denotes ANY env folder be ignored, even in ./some/deep/folder/env |
| 9 | # Sames goes for files |
Summary
I have a Dell R630 with 128G RAM from David and 8x 4TB NVMe from Taylor. What does it take to turn this into a killer TrueNAS Server? This is referring to SRV-55 inventory.
Goal
- U.2 Expansion Kit to support 4x U.2 2.5" Drives (MAYBE)
- Uses 1 of the x16 PCIE slots and connects to existing backplane allowing 4x slots to be U.2 compatible
- Can get M.2 to U.2 2.5" adapters to use my M.2 drives instead of expensive U.2 drives
| 1 | # Latest speedtest-hd.py moved to Gitea |
| 2 | # See https://git.mreschke.net/mreschke/speedtest-hd |
| 3 | |
| 4 | # Quick Install |
| 5 | wget https://git.mreschke.net/mreschke/speedtest-hd/raw/branch/master/speedtest-hd.py && chmod a+x speedtest-hd.py |
Summary
Use proxmox to create a Kubernetes cluster using Talos with one control plane and 3 worker nodes for k8s workloads.
Install talosctl on Localhost
On your local desktop/laptop, install the talosctl CLI
I am doing all this from my mrbluefin Computer, which happens to use Homebrew on Linux
Ronald Jenkees New Stuff
- Clear Creek (Wintry Mix) - https://on.soundcloud.com/NJWAygio91bYS2tLmK
From Z
- https://m.soundcloud.com/m-zinednb/goodmorningbasslines02e01?ref=clipboard&p=a&c=0&si=b0b5b66decb9414ab9d4a99f527dc6c5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing
BACKUP all data first. No guarantee this won't break your NVMe
Download the ISO from the Samsung SSD tools page.
Ex: wget https://download.semiconductor.samsung.com/resources/software-resources/Samsung_SSD_990_PRO_8B2QJXD7.iso
Install tools
sudo apt-get install -y gzip unzip wget cpio
Adjust Nvidia Passthrough Device to Secondary Card
| 1 | #!/bin/bash |
| 2 | |
| 3 | # Set a secondary VM to use second NVIDIA card as PCI Passthrough |
| 4 | # And the bottom USB card. And REMOVE those 2 PCI devices from any other VM |
| 5 | # mReschke 2025-03-16 |
| 6 | |
| 7 | # Input |
| 8 | secondary_vmid="$1" |
| 9 | #primary=109 |
Adjust Nvidia Passthrough Device to Primary Card
| 1 | #!/bin/bash |
| 2 | |
| 3 | # Set a primary VM to use first NVIDIA card as PCI Passthrough |
| 4 | # And REMOVE those 2 PCI devices from any other VM |
| 5 | # mReschke 2025-03-16 |
| 6 | |
| 7 | # Input |
| 8 | primary_vmid="$1" |
| 9 | primary=109 |
| 1 | kafka-python==2.2.10 |
| 2 | murmurhash2==0.2.10 |