Code: Select all
cd .ssh
nano authorized_keys
<paste keys>
<ctrl-o ctrl-x to save and exit>
cd ..
Code: Select all
-bash: cd: .ssh: No such file or directory
Code: Select all
ssh-keygen -t rsa
Code: Select all
cd ~
mkdir .ssh
chmod 700 .ssh
(Let's ignore the Embedded bit for a moment, because meant is Oracle's standard Java SE 8 for Raspbian.)New Feature Highlights
Java
[..]
* Java SE Embedded support to deploy, run, debug or profile Java SE applications on an embedded device, such as Raspberry PI, directly from the NetBeans IDE.
Could you be more specific, please?Mike08 wrote:Can a java application in windows could run in raspberry pi through LAN?
Both will do: you just connect your Pi and your PC to some router or similar, so that your Pi sees the PC and your PC sees the Pi.Mike08 wrote:What about the connection of the Pi and my computer?
Can LAN will do?
or Wifi connectivity?
If it's a Pi2 , you can run NetBeans very fast on the Pi.boneoh wrote:I am very new to Raspberry Pi and NetBeans. Somewhat new to Java as well.
In playing with the RPi and NetBeans, it seems that the Java compilation is performed locally and the dist .jar file is simply copied to the RPi.
Using the NetBeans C/C++, it seems that you can actually compile on the RPi.
So my question is how to handle the library dependencies from the RPi to the local machine? I am using NetBeans on a Mac.
Is there a way to tell NetBeans to look on the RPi for the libraries? I am trying to check out the bglib samples, which refer to both the bglib and gnu.io
I have an SMB share setup on the RPi, is it simply a matter of changing the NetBeans platform config settings? Or do the library .jar files need to get copied to the Mac from the RPi? That seems lame, since the versions could easily get out of date. Also, the gnu.io stuff has installed .so files, what do I do with them?
Thanks!
Pete
I would have suggested starting a seperate thread since your request has very little to do with the subject...vikbaba wrote:Any idea how to access Raspberry Camera in Java? I am creating an Application using swing, currently running on Desktop accessing Webcam to show video stream.
Any suggestion how it could be done using Raspberry Camera?