Page 1 of 1

SFS to use the Arduino and Wiring platform in Puppy Linux

Posted: Mon 16 May 2011, 19:51
by sternenstaub
I have made an .sfs for using the arduino and wiring boards with puppy.
I have tested it with 4.3 and 5.25. I hope is it useful for someone.
In the sfs is the avr-gcc toolchain, avrdude, java and cutecom which is very useful to communicate with the boards.

You can download the sfs here(97MB): http://www.file-upload.net/download-343 ... 7.sfs.html

Informations about arduino: www.arduino.cc
Informations about wiring: http://wiring.org.co

Posted: Tue 17 May 2011, 05:04
by GustavoYz
Hi, thanks for the upload.
Have you seen this post?
8)

Posted: Tue 17 May 2011, 09:56
by sternenstaub
Thanks, i have not seen this before.
My solution was very easy, because in the wiring software packages is most of the software included (AVR, AVRDUDE, JAVA). So i only have to place the folders on the right place that Arduino can use it also.

I was not able to set the path permanent to an additional folder. My solution was to bring the folder to a place where a path exists.

Can anyone say me how is it possible to add an path permanently?

Thanks

Posted: Tue 29 Nov 2011, 11:39
by Master_wrong
Can anyone say me how is it possible to add an path permanently?

http://www.linuxheadquarters.com/howto/basic/path.shtml

export PATH=$PATH:/usr/sbin/:/usr/local/bin

These commands can either be typed at the terminal each time you login, or you can add it to your .bashrc for bash shell or .cshrc for csh or tcsh so that each time you login, the PATH is already set. The $PATH means to keep the existing PATH and then append it with the other directories listed. This is helpful if a directory is set in the PATH by the System Administrator for everyone.