docs(en): dialout-linux added specific command for Arch linux the correct group is 'uucp'

Merges https://github.com/espressif/esp-idf/pull/2940
This commit is contained in:
ShellAddicted 2019-01-11 18:03:17 +01:00 committed by Anton Maklakov
parent 2eabed161a
commit aa364961d0
2 changed files with 8 additions and 0 deletions

View file

@ -67,6 +67,10 @@ The currently logged user should have read and write access the serial port over
sudo usermod -a -G dialout $USER
on Arch linux instead this is done by adding the user to ``uucp`` group with the following command::
sudo usermod -a -G uucp $USER
Make sure you re-login to enable read and write permissions for the serial port.

View file

@ -82,6 +82,10 @@ The currently logged user should have read and write access the serial port over
sudo usermod -a -G dialout $USER
on Arch linux instead this is done by adding the user to ``uucp`` group with the following command::
sudo usermod -a -G uucp $USER
Make sure you re-login to enable read and write permissions for the serial port.