We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I am trying to get processing up and running on my beagle board, i know its possible but for the life of me i can't figure out how to do it, i have oracle JDK installed but how do you link it to processing? and how do you tell processing where it is? i have got it up and running on my pi but it's too slow, if anyone has any ideas please throw them my way, i've speant the past 2 weeks trying to get this going.............
Answers
I installed processing on my Chromebook, which also uses ARM. I'll be curious to hear if you're able to install it using the same directions and I would love to hear how it runs. Here's how I did it, using the 32bit Linux version of Processing:
I found that openJDK runs super slow when doing certain tasks, like drawing ellipses. So I figured out how to install Oracle's Java JDK for ARM, which works much better:
Download the "Linux ARM v6/v7 VFP Hard Float ABI" from this page: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
Move the downloaded file to the /usr/lib/jvm directory. The terminal command, if you are in your downloads folder is: sudo mv jdk-7u40-linux-arm-vfp-hflt.tar.gz /usr/lib/jvm
Move to that directory: cd usr/lib/jvm
Untar the package: sudo tar zxvf jdk-7u40-linux-arm-vfp-hflt.tar.gz
Delete the java folder inside of your Processing folder
Go back to your processing folder and make a symlink to java: ln -s /usr/lib/jvm/jdk1.7.0_40 java
hello! I am also trying to install Processing on my BeagleBoard. nicklally, I just followed your instructions exactly. when I try to run Processing, I get:
the jvm directory did not already exist, so I had to create it. what do you think?
thanks!
i will give this ago next week and get back to you thanks! On another note i'm also planning on getting a intel galileo board to see if it will run any quicker on there! i will get back to you next with with my Beagle bone findings Thanks!!
Hi Thanks, this also worked on my UDOO board which uses a ARM but i cant get the processing video library to work or start a webcam. Anybody got anyluck with that?
Has this moved on in the last 8 months? I've just got a Beaglebone Black and was hoping for some pointers to help me get Processing up and running on it. Thanks :)
I'm trying to get processing to work on my arm chromebook. It tries to launch, but comes up with the error "Could not find required fonts. Please reinstall processing"
I am using Ubuntu with xfce4. I'll update if I get it to work.
Well I just got it to work.
I found a "fonts" folder in the java directory that comes with processing. I moved it to my oracle java jre directory and that worked.
When I try to launch it comes up with /usr/lib/jvm/jdk1.8.0_144/bin/java: 1: /usr/lib/jvm/jdk1.8.0_144/bin/java: Syntax error: word unexpected (expecting ")")
I am using a Ubuntu with xfce4. The only difference from the approach from nicklally is that I had to download a newer version of inux ARM v6/v7 VFP Hard Float ABI, because the website said this version is not longer current. Can somebody help me?