Kategorie: Software
-
Raspberry und Wireguard
https://www.digitalocean.com/community/tutorials/how-to-set-up-wireguard-on-ubuntu-20-04#step-5-configuring-the-wireguard-server-s-firewall What is masquerade?
-
Copy image to sd card – loxberry
sudo dd if=/media/blabla/Daten/loxberry-ddz-backup-20220208-140111/loxberry-ddz-backup-20220208-140111.img of=/dev/sdd bs=1M status=progress If you want, shrink the image before!
-
Loxberry Backup only used partitions
add DEFAULT_DD_BACKUP_SAVE_USED_PARTITIONS_ONLY=1 in /usr/local/etc/raspiBackup.conf
-
InfluxDB uselful queries
Show all available databasesshow databases Use a database e.g mydbuse mydb Show available fields and their type of a a databaseshow field keys Show series where xyzshow series where „powermeter“ = ‚xyzzz‘ Calculate difference between the two latest values of two daysSELECT difference(last(total_kWh)) FROM power_total WHERE time >0 AND „powerMeter“ = ‚xyz‘ GROUP BY time(1d) Select the latest entries from a field within a timespan of 2 daysselect…
-
Create guest Wi-fi with a VLAN & useful Ubiquiti links
Useful links: https://daniel-ziegler.com/ubiquiti/unifi/computer/2018/01/20/Ubiquiti-UniFi-Gast-WLAN/http://janscholten.de/blog/2014/09/vlans-im-heimnetz-mit-netgear-unifi-und-fritzbox/ Optimization:
-
KODI / OSMC view logs
View logs in : tail -F /home/osmc/.kodi/temp/kodi.log Previous log: cat /home/osmc/.kodi/temp/kodi.old.log OR: sudo journalctl logs since boot: sudo journalctl -b filtering for a specific service: journalctl -u nginx.service Restart kodi: systemctl restart kodi
-
[Ubuntu] Switch WiFi AP within same SSID
$ nmcli -f BSSID,ACTIVE,SSID dev wifi list Choose from the list of displayed WiFis $ nmcli d wifi connect 02:40:FC:13:55:B1 Maybe you have to enter your WiFi password now.
-
Windows 8.1 – Hardware wird nicht unterstützt
Wer das Problem unter Windows 7 / Windows 8.1 hat, dass Windows Update meldet „Hardware wird nicht unterstützt“ kann sich mit diesem Tool hier Abhilfe schaffen: https://github.com/zeffy/wufuc Der Grund für diese Meldung ist, dass Kaby Lake bzw. Ryzen Prozessoren nur noch von Windows 10 komplett unterstützt werden. Windows 7 und Windows 8.1 funktionieren mit dieser…
-
Ubuntu 16.04 – auto mount smb share
Create a file where your smb credentials are stored. e.g. touch /etc/samba/user sudo gedit /etc/samba/user Enter your credentials like this: username=samba_user password=samba_user_password create the directory where you want your smb share should be mounted sudo mkdir /media/smb_share edit your fstab to auto-mount your smb share sudo gedit /etc/fstab add a line like this: //myserver_ip_address/folderToShare/ /media/smb_share/…
-
Outlook 2016 – Posteingang IMAP keine Mails
Lösung – der Stammordnerpfad mus bei den Kontoeinstellungen angegeben werden: Datei -> Kontoeinstellungen -> Kontoeinstellungen -> Reiter „E-Mail“ wählen -> Konto auswählen -> auf „Ändern“ klicken -> auf „Weitere Einstellungen“ klicken -> Reiter „Erweitert“ wählen -> Im Feld „Stammordnerpfad“ wird INBOX eingetragen -> „OK“ klicken -> „Weiter“ klicken -> „Schließen“ klicken -> „Fertig stellen“ klicken…