2 tasks for Task Scheduler (taskschd.msc
) to disable forced reboot in windows 10 (Home) version.
You can either save those 2 files as xml, and then immport to taskschd.msc and enable them. Or create those 2 task yourself - instructions below.
2 tasks for Task Scheduler (taskschd.msc
) to disable forced reboot in windows 10 (Home) version.
You can either save those 2 files as xml, and then immport to taskschd.msc and enable them. Or create those 2 task yourself - instructions below.
I use only Debian and net-inst image to install linux, and I use text install ๐
EFI System partition
- this will set this partition as Bootable, and FileSystem=vfat
./boot
that have about 1-2GB , FS=ext4
,/
, FileSystem=ext4
- I almost always choose this setup - it's the most optimal.2023-12-05-raspios-bookworm-arm64.img
on RPi4 & RPi5.sudo apt install libglibmm-2.4-dev libglm-dev libxml2-dev libpango1.0-dev libcairo2-dev wayfire-dev libwlroots-dev libwf-config-dev meson
git clone https://github.com/WayfireWM/wayfire-plugins-extra && cd wayfire-plugins-extra
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ListPipes |
This is easy, but to set it up for first time would need to look in few pages, here is everything in one place ๐
I needed to sniff traffic on usb bus on my linux on which I was writting script for communicating with some usb device. So my setup is:
# | |
# Example python script to generate a BOM from a KiCad generic netlist | |
# | |
# Example: Sorted and Grouped CSV BOM | |
# | |
""" | |
@package | |
Output: CSV (comma-separated) | |
Grouped By: Value, Footprint |
2022-04-04-raspios-bullseye-armhf-lite
) on SD,pi
) and enable ssh (fastes use headless method - need 2 files to drop on sd boot partition: userconf
and ssh
)raspi-config
and enable kms driver (raspi-config will install some packages doing this): 8. -> A2. -> G2.
, also set RaspiOS to console-autologin mode, don't reboot yet./boot/config.txt
, find line with dtoverlay
and vc4-kms...
, change kms to fkms: dtoverlay=vc4-fkms-v3d
- otherwise vlc won't work ๐ , now reboot,#!/bin/sh | |
# | |
# ~/.xinitrc | |
# | |
# Executed by startx (run your window manager from here) | |
#Disable DPMS. (power save/blanking mode for display) | |
xset -dpms | |
xset s off | |
xset s noblank |
#!/bin/bash | |
# script for checking if specified interface is UP and properly connected to network (so ping can work) | |
# enter test ping address. IF ping fails it's marked by creation of file. When ping starts working again | |
# it restart few services (domoticz, mosquitto, samba) and docker containers (you need to specify your | |
# own containers IDs). | |
# script also write to syslog when the ping fail first time (when interface failed), and when recovered. | |
# crontab entry for running every 1min: | |
# * * * * * /root/restart-services.sh >/dev/null 2>&1 |
#client, protocol TCP, set file name as you like - it'll be displayed in OpenVPN client as connection name. | |
proto tcp-client | |
remote domain.com 12345 # Remote OpenVPN Server DNS/IP and port | |
# tap allow to access LAN traffic without additional routing - not supported by ios and Android | |
dev tap | |
# 'tun' - require additional routing to access LAN resources, but works with android and ios | |
nobind | |
persist-key | |
persist-tun |