As an addendum to guide provided by @Arrmm, here’s correct way to do it on Debian: Close RustDesk window service rustdesk stop nano ~/.config/rustdesk/RustDesk.toml Change value of id to “0”, save the file rm -f /etc/machine-id /var/lib/dbus/machine-id dbus-uuidgen –ensure=/etc/machine-id dbus-uuidgen –ensure Run RustDesk – a new ID will be automatically generated. Reference: https://wiki.debian.org/MachineId As @paspo…
Category: Uncategorized
FritzBox Turn off Managed Updates
Use PowerShell script to turn off YourFritz/tr-064 at main · PeterPawn/YourFritz · GitHub
FRITZ Repeater N/G zurücksetzen
Ein wenig anders wird der Reset auf Werkseinstellungen am Fritz-WLAN-Repeater N/G durchgeführt – denn das Gerät verfügt lediglich über ein kleines Touch-Display. Ziehen Sie den Repeater N/G zunächst aus der Steckdose. Nach fünf Sekunden stecken Sie das Gerät wieder ein. Es sollte nun ungefähr zehn Sekunden dauern, bis das Display den “Fritz”-Schriftzug anzeigt. Betätigen Sie nun den linken Touch-Punkt zwei- bis dreimal….
Radio Pi Commands
ComaNET Radio @radiopi:~/PiFmAdv/src $ ffmpeg -f pulse -i alsa_input.usb-Roland_EDIROL_UA-25-00.analog-stereo -f wav -af ‘aresample=45600’ pipe:1 | sudo ./pi_fm_adv –wait 0 –freq 87.6 –dev 85.0 –mpx 60 –preemph eu –power 6 –ppm 1000000 –pi 40FF –ps TonTon –pty 15 –rt Test program –ctl rds_ctl –audio – 30.11.2022 pi@radiopi:~/PiFmAdv/src $ ffmpeg -f pulse -i alsa_input.usb-Roland_EDIROL_UA-25-00.analog-stereo -f wav -af…
SSH Login Without Password Using ssh-keygen & ssh-copy-id
You can login to a remote Linux server without entering password in 3 simple steps using ssky-keygen and ssh-copy-id as explained in this article. ssh-keygen creates the public and private keys. ssh-copy-id copies the local-host’s public key to the remote-host’s authorized_keys file. ssh-copy-id also assigns proper permission to the remote-host’s home, ~/.ssh, and ~/.ssh/authorized_keys. This…