diff --git a/docs/en/get-started-cmake/establish-serial-connection.rst b/docs/en/get-started-cmake/establish-serial-connection.rst index 9fe4bf15e..7ddf9bfb6 100644 --- a/docs/en/get-started-cmake/establish-serial-connection.rst +++ b/docs/en/get-started-cmake/establish-serial-connection.rst @@ -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. diff --git a/docs/en/get-started/establish-serial-connection.rst b/docs/en/get-started/establish-serial-connection.rst index 8a337af8f..a9e4d753b 100644 --- a/docs/en/get-started/establish-serial-connection.rst +++ b/docs/en/get-started/establish-serial-connection.rst @@ -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.