Flash Zigbee dongle with Z-Stack-firmware using Ubuntu Live

This guide is based on my experience flashing the firmware of an Electrolama ZZH! dongle. It should work with every Zigbee dongle that is supported by the Z-Stack-firmware. These steps are based on information and tools from these sources: Ubuntu Live We use a live install of Ubuntu Desktop on an USB-drive. Download the ISO …

How to delete files with a certain extension from a folder and all of its subfolders

First, browse to the folder in which you want to delete files with a specific extension cd /path/to/folder Then delete the files with the extension .jpg find . -type f -iname \*.jpg -delete . tells to start searching in the current folder. -type f tells find only to look for files. -iname makes the search …