Created
September 28, 2015 07:11
-
-
Save mlankenau/29905a9384b4fc1e5b7e to your computer and use it in GitHub Desktop.
Getting arduino to work on ubuntu without running as root
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install arduino ide | |
sudo apt-get update && sudo apt-get install arduino arduino-core | |
# necessary to get into dialup group (at least for me), maybe reboot afterwards | |
sudo apt-get remove modemmanager | |
# add user to the dialout group | |
sudo usermod -a -G dialout <my-username> | |
# arduino should work now without beeing root | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment