Edit to kernel.spec
Patch1000: debrand-single-cpu.patch
Patch1001: debrand-rh_taint.patch
Patch1002: debrand-rh-i686-cpu.patch
+ Patch1003: intel-iommu.patch
| mkdir DisabledMods\. | |
| move ace_advanced_ballistics.pbo DisabledMods\. | |
| move ace_advanced_ballistics.pbo.ace_*.bisign DisabledMods\. | |
| move ace_advanced_fatigue.pbo DisabledMods\. | |
| move ace_advanced_fatigue.pbo.ace_*.bisign DisabledMods\. | |
| move ace_ai.pbo DisabledMods\. | |
| move ace_ai.pbo.ace_*.bisign DisabledMods\. | |
| move ace_aircraft.pbo DisabledMods\. | |
| move ace_aircraft.pbo.ace_*.bisign DisabledMods\. | |
| move ace_apl.pbo DisabledMods\. |
| substitutions: | |
| devicename: xmas-matrix | |
| friendly_name: "xmas-matrix_" | |
| id_prefix: "xmas-matrix_" | |
| ip_address: "192.168.23.65" | |
| use_ip_address: "192.168.23.65" | |
| xscrollpadding: "4" # in pix | |
| esphome: | |
| name: ${devicename} | |
| platform: ESP8266 |
| #!/bin/bash | |
| #Proxmox 6.2 over Ubuntu Focal Fossa patch for IOMMU. | |
| #this can be done with Proxmox vanilla, just run the script! | |
| #based heavily on | |
| #https://forum.proxmox.com/threads/help-with-pci-passthrough.23980/ | |
| #move to working dir | |
| cd "${0%/*}" |
| #!/bin/bash | |
| for drive in $(sg_scan -i | grep "SanDisk DO" -B 1 | awk '{print $1}' | grep /) | |
| do | |
| smartctl -a ${drive::-1} > /tmp/smart.info | |
| echo "Info for ${drive::-1}" | |
| grep "Product:" /tmp/smart.info | |
| grep "SMART Health Status:" /tmp/smart.info | |
| grep "Serial number:" /tmp/smart.info | |
| grep "Percentage used endurance indicator:" /tmp/smart.info | |
| grep "Logical block size:" /tmp/smart.info |
| esphome: | |
| name: boot_dryer | |
| platform: ESP8266 | |
| board: d1_mini | |
| # WiFi connection, correct these | |
| # with values for your WiFi. | |
| wifi: | |
| ssid: !secret ssid | |
| password: !secret wifi_password |
| #!/usr/bin/perl | |
| #simple program to set correct hostname | |
| ##written by Tames Tutton | |
| ##:USAGE:: ./ActiveTriggerByHost.pl | |
| ##------------------ | |
| BEGIN { | |
| unshift(@INC,'/home/drvtiny/Apps/Perl5/libs'); | |
| } | |
| use Monitoring::Zabipi qw(zbx); |
| #!/bin/bash | |
| # create custom bootable iso for CentOS 7 with kickstart | |
| if [ $# -lt 2 ] | |
| then | |
| echo "Usage1: $0 path2iso path2kickstart" | |
| exit 1 | |
| else | |
| if [ ! -f $1 ] | |
| then |