Mostly taken from https://www.cyberciti.biz/faq/update-upgrade-debian-11-to-debian-12-bookworm/
Doing less checks than that, to make it as much of a copy and paste affair as possible.
sudo apt update
sudo apt upgrade -y
sudo apt full-upgrade -y
Mostly taken from https://www.cyberciti.biz/faq/update-upgrade-debian-11-to-debian-12-bookworm/
Doing less checks than that, to make it as much of a copy and paste affair as possible.
sudo apt update
sudo apt upgrade -y
sudo apt full-upgrade -y
These steps have to be done on Windows unfortunately
Get media creation tool https://go.microsoft.com/fwlink/?LinkId=691209
At a command prompt MediaCreationTool_22H2.exe /Eula Accept /Retail /MediaArch x64 /MediaLangCode en-GB /MediaEdition Enterprise
Product Key Windows 10 Enterprise NPPR9-FWDCX-D2C8J-H872K-2YT43
https://www.nxp.com/docs/en/user-guide/AN2353.pdf
Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all eTPU-equipped Devices
sudo pacman -S bison\ | |
flex \ | |
picocom \ | |
arm-none-eabi-binutils \ | |
arm-none-eabi-gcc \ | |
arm-none-eabi-gdb \ | |
arm-none-eabi-newlib | |
yay -S --noconfirm \ | |
kconfig-frontends \ |
# Disabled flag, used to check and enable or disable login provider. | |
# 1 = Disabled credential provider | |
# 0 = Enabled credential provider | |
$DisbaleFlag = "1" | |
# Registry keys for removing Password and Pin login. | |
$registryKeys = | |
@( | |
[pscustomobject]@{Name="PasswordProvider";Location="HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\Credential Providers\{60b78e88-ead8-445c-9cfd-0b87f74ea6cd}";Key="Disabled";Value="1"}, | |
# [pscustomobject]@{Name="PINLogonProvider";Location="HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\Credential Providers\{cb82ea12-9f71-446d-89e1-8d0924e1256e}";Key="Disabled";Value="1"}, |
#!/usr/bin/env python | |
import glob, os | |
import tomllib | |
data = {} | |
for file in glob.glob("build/env.d/*.env"): | |
with open(file, "rb") as f: | |
for k, v in tomllib.load(f).items(): |
# /etc/udev/rules.d/10-keyboard-leds.rules | |
ACTION=="add", SUBSYSTEM=="leds", DEVPATH=="/devices/platform/tuxedo_keyboard/leds/rgb:kbd_backlight_2", RUN+="/usr/local/bin/keyboard-leds.sh" |
set interfaces openvpn vtun0 mode client | |
set interfaces openvpn vtun0 remote-host <remote-host> | |
set interfaces openvpn vtun0 remote-port <remote-port> | |
set interfaces openvpn vtun0 persistent-tunnel | |
set interfaces openvpn vtun0 authentication username <username> | |
set interfaces openvpn vtun0 authentication password <password> | |
set interfaces openvpn vtun0 encryption aes256 | |
set interfaces openvpn vtun0 hash sha512 |
package uisim | |
import ( | |
"fmt" | |
"image/color" | |
"reflect" | |
"strconv" | |
"fyne.io/fyne/v2" | |
"fyne.io/fyne/v2/container" |