This file contains 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
#!/bin/bash | |
# | |
# Save the file as /etc/grub.d/90_efi_fix | |
# | |
# if recreating the boot partitions, do not forget to update partition IDs in /etc/fstab | |
# use the following to find out the UUIDs | |
# lsblk -o UUID -nr /dev/sda1 | |
# lsblk -o UUID -nr /dev/sdb1 | |
# also add ",nofail" to the fstab entry options, in case the drive dies, so that you are not stuck during boot | |
# |
This file contains 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
# /etc/udev/rules.d/10-usbports.rules | |
ACTION=="add", ATTRS{interface}=="eBus Coupler 12001", SYMLINK+="ttyeBus" | |
# /etc/default/ebusd | |
PARAMETERS='-d /dev/ttyeBus --latency=0 -c /etc/ebusd/ --log="all info" --mqtthost=127.0.0.1 --mqttport=1883 --mqttuser=(...) --mqttpass=(...) --mqttlog --scanconfig --configlang=en --accesslevel="*"' | |
# diff -u ebusd-2.1.x/en/vaillant/hcmode.inc /etc/ebusd/vaillant/hcmode.inc | |
--- ./ebusd-configuration/ebusd-2.1.x/en/vaillant/hcmode.inc 2023-10-23 10:03:16.245419205 +0000 | |
+++ /etc/ebusd/vaillant/hcmode.inc 2023-11-12 11:03:08.281734797 +0000 | |
@@ -8,6 +8,7 @@ |
This file contains 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
# File location: /etc/systemd/network/10-bridges.link | |
[Match] | |
Type=bridge | |
[Link] | |
MACAddressPolicy=none |
This file contains 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
# BEGIN DHCP Header | |
# ---------- | |
# dhcpd6.conf | |
# ---------- | |
default-lease-time 2592000; | |
preferred-lifetime 604800; | |
option dhcp-renewal-time 3600; | |
option dhcp-rebinding-time 7200; | |
allow leasequery; | |
# ---------- |
This file contains 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
#!/usr/bin/env bash | |
# This script is for Debian/Ubuntu Linux (tested on Ubuntu 22.04) | |
# This script fixes a case of /boot/efi being installed on a mdraid (RAID1) device | |
# That's not a supported configuration as of Grub on Ubuntu 22.04 | |
# You have to stop and remove the mdraid, reinitialize the FAT volumes, remount /boot/efi, | |
# then configure grub to use both devices (using debconf-set-selections), | |
# and finally run grub reconfiguration (in this case noninteractively), which will install | |
# grub (both EFI partitions of the former RAID1) to EFI nvram |
OlderNewer