Adding user to dialout on Linux

Adding user to dialout on Linux

The currently logged user should have read and write access the serial port over USB. On most Linux distributions, this is done by adding the user to dialout group with the following command:

sudo usermod -a -G dialout $USER

Make sure you re-login to enable read and write permissions for the serial port.

原文地址:https://www.cnblogs.com/lamblabs/p/8436693.html