Arduino Uno on Fedora Linux

Posted by lane

Here are some notes on things I did to get Arduino working on Fedora Linux:

  • Install the Arduino software
    sudo yum install arduino
    
  • Edit udev rules so that you have permission to talk to the serial port. To do this I added the following line to /uetc/udev/rules.d/60.rules:
    KERNEL=="ttyACM*", MODE="0666"
    

Leave a Reply