Blame
|
1 | # Linux |
||||||
| 2 | ||||||||
|
3 | ## Update your OS |
||||||
| 4 | ||||||||
|
5 | First, update your OS |
||||||
| 6 | ||||||||
|
7 | ``` |
||||||
| 8 | sudo apt update |
|||||||
| 9 | sudo apt upgrade |
|||||||
| 10 | ``` |
|||||||
|
11 | |||||||
|
12 | ## Access to USB Serial |
||||||
| 13 | ||||||||
|
14 | Add your user to the dialout group, change `$USER` to your user name. This allows your user to access the USB serial device. |
||||||
|
15 | |||||||
| 16 | ``` |
|||||||
| 17 | sudo usermod -a -G dialout $USER |
|||||||
| 18 | ``` |
|||||||
|
19 | |||||||
| 20 | You'll need to log this user out and back in again. |
|||||||