You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the "USB access right on Linux" section in readme.md is not specific or correct enough, especially for a beginner of Linux.
The command in the "USB access right on Linux" section of readme.md is shown as below:
USB access right on Linux
On Linux, to be able to flash the node you need to have access right to the node bootloader. This can be achieved by adding a udev rules for the node bootloader.
Your procedure is correct: # actually denotes a commands that should be run on the command line as superuser (root). $ would be used for a command to be run as a normal user. This is indeed something that might not be understandable easily by a beginner.
If you think the lib approach is better and if you are interested in contributing we will gladly accept a pull-request with an updated documentation to this repos.
I think the "USB access right on Linux" section in readme.md is not specific or correct enough, especially for a beginner of Linux.
The command in the "USB access right on Linux" section of
readme.md
is shown as below:If I directly copy that command and paste it to terminal, then this is what happened:
Notice that there is an
#
at the begin of that command. However, that#
should not be in there.If I remove the
#
at the begin of that command, then I got:It turned out that the current user "lxl" has no permission to create file in that directory.
My solution is to log in with
root
account. Theroot
account is not active by default. So, first, I input this below command:sudo passwd root
Then set password to active the
root
account.And I switch the user from
lxl
toroot
, using the below command:And then paste that command line without
#
to terminal:Press
Enter
, and then the file99-lps.rules
was correctly created.The text was updated successfully, but these errors were encountered: