CasaKampa Blog
Niets is zo permanent als een tijdelijke oplossing.
Category: Ubuntu
-
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…
-
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…
-
zip -R zipfile.zip ‘*.jpg’