Install Arduino IDE on Ubuntu - Doesn't Work Please help :(

Install Arduino IDE on Ubuntu - Doesn't Work

I installed Arduino IDE from software Center
I ran, and i selected my ArduinoAtmegea2560 at the tools

but when i want to upload an example program.

Is see this:
https://drive.google.com/file/d/0B8mrL7KzJrBnRm45R1NCVjNWSFk/edit?usp=sharing
And in the tool i can't change the serrial port :frowning:
What should i do? PLease help :frowning:

You probably need to belong to the dialout group in order to access the /dev/ttyACM* ports. Try the following.

In a terminal, with the board plugged in, enter:
ls -l /dev/ttyACM* , with the board plugged in it will show the group that has access rights to the port.

Example: crw-rw-r-- 1 root dialout ... /dev/ttyACM0, root is owner, dialout is the group with access.

If you don't see any ports you may have a defective board or USB cable.

Entering the command, groups, in a terminal will show the groups you belong to.

sudo adduser YourUserName GroupToJoin Will fix things if you need to join a group, logout and login after you run adduser.