HU felirat & EN subtitle!
Synology Diskstation Manager (DSM) is actually a Linux-based operating system with an advanced feature set.
As of version 7 Synology DSM no longer supports external USB devices and their drivers.
In the video I show how to make a USB Zigbee adapter work.
Later, I will present the Docker integration of the USB adapter with several possible methods, such as the Docker Run command line, Synology NAS Task Scheduler and finally with the Portainer application.
SONOFF ZigBee 3.0 Dongle E USB stick EFR32MG21
https://sonoff.tech/product/gateway-a...
After you connect the USB device, it will be registered as a new block device in the /dev/ directory.
The /dev/ directory consists of files that represent devices attached to the local system.
We need to find ttyUSB... or ttyACM... directory for our Zigbee adapter.
Commands:
SSH client login from command line (-p22 is the default port number)
ssh yourNASusername@yourNASip -p22
Only leave the SSH access option open until the task is completed!
sudo -i
Sudo stands for SuperUser DO and is used to access restricted files and actions. By default, Linux restricts access to certain parts of the system, preventing sensitive files from being compromised.
/sbin/modprobe usbserial
/sbin/modprobe ftdi_sio
/sbin/modprobe cdc-acm
The modprobe command allows you to load a module into the Linux kernel. Only users with system administrator privileges can manage kernel modules.