Last active
November 28, 2016 09:30
-
-
Save yassinagx/93dd70fd5835861c541a098d877a15c5 to your computer and use it in GitHub Desktop.
Script installer arduino for ubuntu
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
cd ~ | |
wget https://www.arduino.cc/download.php?f=/arduino-1.6.12-linux64.tar.xz | |
tar -vxf download.php?f=%2Farduino-1.6.12-linux64.tar.xz | |
cd arduino-1.6.12-linux64.tar.xz | |
chmod +x ./install.sh | |
./install.sh | |
cd /etc/udev/rules.d/ | |
echo KERNEL=="ttyACM[0-9]*",MODE="666" > arduino.rules | |
echo KERNEL=="ttyUSB[0-9]*",MODE="666" >> arduino.rules | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment