Krams aus dem NOC

Hardware, Software und all so was

Emby, Linux und so Fehler…

Nur so am Rande: So werdet Ihr Fehlermeldugen im Log los, wenn Ihr mit Emby ein paar mehr Ordner gleichzeitig auf Veränderungen überwachen wollt.

$ cat /proc/sys/fs/inotify/max_user_watches

Nun setzt das Limit einfach hoch:

$ sudo sysctl -w fs.inotify.max_user_watches=16384

Damit es dauerhaft bleibt:

$ echo fs.inotify.max_user_watches=16384 | sudo tee -a /etc/sysctl.conf
$ sudo sysctl -p

OMV Backup wieder einspielen

Here is a basic restore procedure using fsarchiver for the same hard drive but a change went bad:

  • Boot systemrescuecd – if you installed the iso from omv-extras, it will be in your grub menu.
  • Mount your data drive – example: mount /dev/sde1 /mnt/backup
  • Figure out where your backup file is. fsarchiver uses the .fsa extension – example: /mnt/backup/omvbackup/backup-omv-07-May-2018_10-36-31.fsa
  • Figure out what your OS drive root partiton is. Don’t get this wrong! – example: /dev/sda1
  • Restore the files – example fsarchiver restfs /mnt/backup/omvbackup/backup-omv-07-May-2018_10-36-31.fsa dest=/dev/sda1
  • reboot

Here is a basic restore procedure using dd for the same hard drive but a change went bad:

  • Boot systemrescuecd – if you installed the iso from omv-extras, it will be in your grub menu.
  • Mount your data drive – example: mount /dev/sde1 /mnt/backup
  • Figure out where your backup file is. dd uses the .dd.gz extension – example: /mnt/backup/omvbackup/backup-omv-07-May-2018_10-36-31.dd.gz
  • Figure out what your OS drive root partiton is. Don’t get this wrong! – example: /dev/sda1
  • Restore the files – example gunzip -c /mnt/backup/omvbackup/backup-omv-07-May-2018_10-36-31.dd.gz | dd of=/dev/sda1 bs=1M status=progress
  • reboot

Wenn das RGB nicht will… mit dem Tuya-Adapter

Wenn man im Home Assistant bemerkt, dass ein RGB-Licht oder ein RGB-LED-Streifen nicht ordentlich funktioniert und sich die Farben nicht einstellen lassen, so gibt es eine einfache Lösung.

Zunächst muss man im eigenen Profil den „Erweiterten Modus“ aktivieren.

Nun fügt man der configuration.yaml folgendes hinzu;

homeassistant:
  customize: !include customize.yaml

Zur Sicherheit habe ich dann noch ein „touch customize.yaml“ im Konfigurationsverzeichnis durchgeführt.

Nun kann man mit Hilfe folgender Aufstellung unter Einstellung -> Anpassung (ganz unten!) die gewünschte Entität bearbeiten:

# Bitfield of features supported by the light entity
ATTR_SUPPORTED_FEATURES = 'supported_features'
SUPPORT_BRIGHTNESS = 1
SUPPORT_COLOR_TEMP = 2
SUPPORT_EFFECT = 4
SUPPORT_FLASH = 8
SUPPORT_RGB_COLOR = 16
SUPPORT_TRANSITION = 32
SUPPORT_XY_COLOR = 64
SUPPORT_WHITE_VALUE = 128

Also bei den supported_features den Wert von 1 auf die Summe der Features ändern, welche von der Lampe unterstützt werden.
Für mich hat die 63 das gewünschte Ergebnis gebracht.

Präsentiert von WordPress & Theme erstellt von Anders Norén