Download
latest Releases : 2.0.0-RELESE
2.0.0-RELESE | Download page |
Number of Projects
RT-Component | 152 |
RT-Middleware | 33 |
Tools | 22 |
Documentation | 2 |
Choreonoid
Motion editor/Dynamics simulator
OpenHRP3
Dynamics simulator
OpenRTP
Integrated Development Platform
AIST RTC collection
RT-Components collection by AIST
TORK
Tokyo Opensource Robotics Association
DAQ-Middleware
Middleware for DAQ (Data Aquisition) by KEK
JDK installation hints
The JDK installs either OpenJDK or OracleJDK. Here, we will show you how to install in the following environment.Ubuntu 14.04
OpenJDK7
It can be installed with apt-get.
Confirmation of JDK
Here, when the version is displayed for "1.6.0_xx", change it to use JDK 7. This switching is done with the update-alternatives command.
oracleJDK7
Add the repository and install oracleJDK7.
Confirmation of JDK
If you also have OpenJDK installed, you can check the selection status below.
Debian 7.0 Wheezy
OpenJDK7
For the procedure, refer to Ubuntu 14.04 above. It can be set by the same procedure.
oracleJDK7 (Method using java-package: corresponding from Debian 7.0)
Follow the instructions on the right to install. https://wiki.debian.org/JavaPackage
Add the following sentence to the end of /etc/apt/sources.list.
Install the required java-package to install the JDK.
Download the JDK (here jdk-7u75-linux-x64.tar.gz) from the oracle site.
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
Generate and install the deb package.
Select oracleJDK.
Confirmation of JDK
Debian 6.0 Squeeze
OpenJDK7
Add the wheezy repository to the end of /etc/apt/sources.list.
Since it was added only for the installation of openjdk 7, the priority is the sqeeze version, so create a local file in / etc / apt / apt.conf.d and write the following.
On the other hand, the priority of the package included in wheezy is kept to a minimum. In the squeeze environment, we want to avoid having to upgrade major libraries unnecessarily.
Create a wheezy file in /etc/apt/preferences.d and write the following.
For priority, 100 is allocated to the package being installed, 500 is allocated to the package not installed, so specify a value smaller than 100.
Select OpenJDK 7.
Confirmation of JDK
oracleJDK 7 (How to install with update-alternatives)
Debian 6.0 does not support java-package, so install it with update-alternatives.
Download the JDK (here jdk-7u75-linux-x64.tar.gz) from the oracle site.
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
Unzip it and move the generated directory jdk1.7.0_75 to /usr/lib.
Install with the update-alternatives command. At this time, the priority is specified, but here it is 1.
Select oracleJDK.
Confirmation of JDK
Reference site (external site):
Fedora 20
OpenJDK7
It is already installed.
oracleJDK7
Download the JDK (jdk-7u75-linux-x64.rpm in this case) from the oracle site.
http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
Installation
Confirm installation destination
Register oracleJDK to alternatives. At this time, if you use the /usr/java/latest path from the installation above, you can see that it does not depend on the JDK version number.
Before registering, check the Java settings.
The above result shows that orbd is registered as a slave. When invoking the name server, the path must be passed to orbd. The slave specifies what you want to switch with java installed with update-alternatives - install. Therefore, when registering oracleJDK to alternatives, we also specify with --slave option.
Also, the priority item 170075 is priority. update-alternatives --install Specify the priority when running. Since the version of OpenJDK 7 and orcleJDK 7 is the same this time, we will specify 170075 as the priority when registering oracleJDK 7.
For these reasons, register with the following settings.
Select oracleJDK.
Confirmation of JDK