I just got my Arduino kit from Frtzing, looking a bit on how to install, here is what I did : (can of course also be done w/Yast
Based on infos from : http://arduino.cc/playground/Linux/OpenSUSE
#Add repo for Arduini
sudo zypper ar http://download.opensuse.org/repositories/home:/kwk:/arduino/openSUSE_11.4 Arduino
#Add repo for Ar
sudo zypper ar http://download.opensuse.org/repositories/CrossToolchain:/avr/openSUSE_11.4 Crosscompiling
#Install Arduino
sudo zypper in arduino
added myself (user) in groups uucp, lock and dialout
dmesg gave me :
...
[ 5716.933696] usb 1-1.2: new full speed USB device using ehci_hcd and address 6
[ 5717.020604] usb 1-1.2: New USB device found, idVendor=2341, idProduct=0001
[ 5717.020610] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=220
[ 5717.020615] usb 1-1.2: Product: Arduino Uno
[ 5717.020618] usb 1-1.2: Manufacturer: Arduino (www.arduino.cc)
[ 5717.020621] usb 1-1.2: SerialNumber: 64935343233351118110
[ 5717.021112] cdc_acm 1-1.2:1.0: ttyACM0: USB ACM device
lsusb gave me :
Bus 001 Device 007: ID 2341:0001
launched arduino, it didn't see ttyACM0, so based on an info from http://www.arduino.cc/en/Guide/Troubleshooting#toc1
I symlinked
ln -s /dev/ttyACM0 /dev/ttyUSB0
Then Arduino saw it, but I tried to upload a test file and got the message :
Binary sketch size: 1978 bytes (of a 32256 byte maximum)
avrdude: Yikes! Invalid device signature.
Double check connections and try again, or use -F to override
this check.
Got an info from http://www.arduino.cc/en/Guide/Troubleshooting#toc23 that I may be using a wrong version of avrdude !?
I used the avrdude from the same repo as Arduino :-/
What should I do ? Anyone got it working on OpenSuse 11.4 ? Any help would be appreciated