Drivers are required only for Windows. They are already included with the installer, so in most cases no separate installation is required.
To allow NTC Configurator to detect USB-connected devices, add the current user (the account you use to log in) to the group that has access to the /ttyS* ports:
Check which group owns the serial ports
ls -al /dev | grep "ttyS"
Example output:
crw-rw---- root uucp 0 B Wed Jun 10 15:11:48 2026 ttyS0
crw-rw---- root uucp 0 B Wed Jun 10 15:11:48 2026 ttyS1
crw-rw---- root uucp 0 B Wed Jun 10 15:11:48 2026 ttyS10
crw-rw---- root uucp 0 B Wed Jun 10 15:11:48 2026 ttyS11
crw-rw---- root uucp 0 B Wed Jun 10 15:11:48 2026 ttyS12
In this example, the group is uucp.
Run the following command to add the current user to this group:
sudo usermod -aG uucp $USER
Restart your computer.