How to setup Automatic Updates on Debian

Introduction One central part of keeping Linux servers secure is installing security updates on time. This is one of the critical tasks for Linux admins to make the system up-to-date. In addition, it keeps your system more stable and secure. Therefore, as a system administrator, regularly updating the…

File Browser

Introduction File Browser is an open-source, self-hosted file browser. The Docker Compose File --- services: filebrowser: image: docker.io/filebrowser/filebrowser:latest container_name: filebrowser hostname: filebrowser restart: unless-stopped security_opt: - no-new-privileges:true environment: - TZ=Europe/Stockholm - PUID=1000 - PGID=1000 ports: - 8080:8080/tcp volumes:…

Enable sudo without a password

edit /etc/sudoers sudo visudo Then find the admin group permission section: %admin ALL = (ALL) ALL %wheel ALL=(ALL) ALL Change to add NOPASSWD: %admin ALL = (ALL) NOPASSWD: ALL user ALL=(ALL) NOPASSWD: ALL Be aware that removing the password requirement to use sudo eliminates a level of security. If…

Dozzle

Introduction Dozzle is open-sourced project sponsored by Docker OSS. It is a log viewer designed to simplify the process of monitoring and debugging containers. It is a lightweight, web-based application that provides real-time log streaming, filtering, and searching capabilities through an intuitive user interface. The Docker Compose…

Accessing USB Devices from Docker Containers

One of the common problems people have when they use Home Assistant Container is getting Home Assistant to recognise USB devices that you have plugged into the host computer, usually things like Zigbee or Z-Wave USB dongles. To make this work you need to map the USB stick from…

SONOFF ZigBee 3.0 USB Dongle Plus

SONOFF Zigbee 3.0 USB Dongle is a universal Zigbee USB stick. It can be used as a universal Zigbee gateway in Home Assistant or other open-source platforms via ZHA or Zigbee2MQTT. The device allows you to locally control all your Zigbee devices, so you don’t need multiple…