OpenRTM-aist is provided with a deb package that can be used on Ubuntu and Debian GNU Linux.
2.1 is currently compatible with Ubuntu 22.04, 24.04 (amd64, arm64 respectively). Please note that the supported version and support for Ubuntu/Debian GNU Linux are subject to change without notice.
SSM communication function can now be installed. Since the SSM library is statically linked, you do not need to install SSM separately. The following will be installed from the openrtm2-ssm-tp deb package.
usr/
├── bin
│ ├── killssm
│ ├── lsssm
│ ├── psssm
│ ├── ssm-advance-player
│ ├── ssm-coordinator
│ ├── ssm-date
│ ├── ssm-graph
│ ├── ssm-logger
│ ├── ssm-monitor
│ ├── ssm-player
│ ├── ssm-proxy
│ ├── ssm-transporter
│ └── topssm
├── etc
│ └── transport
│ └── rtc.ssm.conf
└── share
└── openrtm-2.1
└── transport
└── SSMTransport.soThis feature will not be installed if you run the "Batch Installation Script" described in the next section without any options.
You can install it by specifying the option "-l c++ --ssm". You can check this with --help.
To install 2.1 series, paste the following into the shell prompt and execute it. C ++ version, Python version, Java version, OpenRTP (amd64 only), rtshell, JDK8 will be installed. Scripts are not saved locally.
※By executing the script, even if multiple versions of Java are installed, it is switched to using Java8.
$ bash <(curl -s https://raw.githubusercontent.com/OpenRTM/OpenRTM-aist/master/scripts/openrtm2_install_ubuntu.sh)
This will install the following packages:
$ dpkg -l | grep openrt ii openrtm2:arm64 2.1.0-0 arm64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-dev:arm64 2.1.0-0 arm64 OpenRTM-aist headers for development ii openrtm2-doc 2.1.0-0 all Documentation for openrtm2 ii openrtm2-example:arm64 2.1.0-0 arm64 OpenRTM-aist examples ii openrtm2-idl:arm64 2.1.0-0 arm64 OpenRTM-aist idls for development ii openrtm2-java:arm64 2.1.0-0 arm64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-java-example:arm64 2.1.0-0 arm64 OpenRTM-aist-Java examples ii openrtm2-naming:arm64 2.1.0-0 arm64 OpenRTM-aist name server launcher ii openrtm2-python3 2.1.0-0 arm64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-python3-example 2.1.0-0 arm64 OpenRTM-aist-Python examples
Using the default pip version will cause rtshell installation to fail.
Follow the instructions in the yellow text displayed by the installation script and add the following to /etc/pip.conf (create a new file if it doesn't exist).
$ vi /etc/pip.conf [global] break-system-packages = true
After configuring the settings above, you can install rtshell by running the installation script again.
$ pip3 list | grep aist OpenRTM-aist-Python 2.1.0 rtctree-aist 4.2.5 rtshell-aist 4.2.10 rtsprofile-aist 4.1.6
By specifying the option, it is possible to install the package according to the purpose. help can be found below.
$ bash <(curl -s https://raw.githubusercontent.com/OpenRTM/OpenRTM-aist/master/scripts/openrtm2_install_ubuntu.sh) --help
For details on the installed packages, see What the installer does
In 2.1 series, you can install the package for ROS communication function.
This section explains how to install packages in an environment where ROS2 is installed.
As mentioned in help, the ROS package installation options are supported below.
[-e ros2|all] [--ros2]
If you have already executed the installation script without any options and want to install additional packages for ROS and ROS2, you can use "-l c ++ --ros2l".
$ bash <(curl -s https://raw.githubusercontent.com/OpenRTM/OpenRTM-aist/master/scripts/openrtm2_install_ubuntu.sh) -l c++ --ros2
If you want to install all the packages for ROS and ROS2 from the beginning, you can do it with "-l all --ros2".
$ bash <(curl -s https://raw.githubusercontent.com/OpenRTM/OpenRTM-aist/master/scripts/openrtm2_install_ubuntu.sh) -l all --ros2
Check the installed packages.
$ dpkg -l | grep openrt ii openrtm2:amd64 2.1.0-0 amd64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-dev:amd64 2.1.0-0 amd64 OpenRTM-aist headers for development ii openrtm2-doc 2.1.0-0 all Documentation for openrtm2 ii openrtm2-example:amd64 2.1.0-0 amd64 OpenRTM-aist examples ii openrtm2-idl:amd64 2.1.0-0 amd64 OpenRTM-aist idls for development ii openrtm2-java:amd64 2.1.0-0 amd64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-java-example:amd64 2.1.0-0 amd64 OpenRTM-aist-Java examples ii openrtm2-naming:arm64 2.1.0-0 arm64 OpenRTM-aist name server launcher ii openrtm2-python3 2.1.0-0 amd64 OpenRTM-aist, RT-Middleware distributed by AIST ii openrtm2-python3-example 2.1.0-0 amd64 OpenRTM-aist-Python examples ii openrtm2-ros2-tp:amd64 2.1.0-0 amd64 OpenRTM-aist extension ROS2 package ii openrtp2:amd64 2.1.0-0 amd64 OpenRTP, Open RT Platform distributed by AIST
After successful installation, you can check the operation with the attached sample component. The installation destination of the sample component is as follows.
/usr/share/openrtm-2.1/components/c++/examples /usr/share/openrtm-2.1/components/python3/ /usr/share/openrtm-2.1/components/java
Start OpenRTP, a tool for operating the RTC and building the RT system.
$ openrtp2
OpenCV's C ++ sample components do not provide a deb package for installation. We provide a script to generate a deb package from the source, so please build and install it.
This is an example of building and installing the OpenCV main unit of version 4.5.4 and the extension module group (opencv_contrib) together.
$ sudo vi /etc/apt/sources.list
:
deb-src http://jp.archive.ubuntu.com/ubuntu/ *** universe
or
deb-src http://us.archive.ubuntu.com/ubuntu/ *** universesudo apt build-dep opencv wget https://github.com/opencv/opencv/archive/refs/tags/4.5.4.tar.gz -O opencv-4.5.4.tar.gz tar xvzf opencv-4.5.4.tar.gz wget https://github.com/opencv/opencv_contrib/archive/refs/tags/4.5.4.tar.gz -O opencv_contrib-4.5.4.tar.gz tar xvzf opencv_contrib-4.5.4.tar.gz cd opencv-4.5.4 mkdir build cd build cmake -DOPENCV_EXTRA_MODULES_PATH=../../opencv_contrib-4.5.4/modules -DBUILD_opencv_java=OFF .. make -j$(nproc) sudo make install sudo ldconfig
Get the source ImageProcessing, build it, and generate a deb package.
git clone https://github.com/OpenRTM/ImageProcessing cd ImageProcessing/opencv mkdir build cd build cmake .. ./build_linux_package.sh
This will generate imageprocessing_2.x.x_amd64.deb and install it.
sudo dpkg -i imageprocessing_2.x.x_amd64.deb ls /usr/share/openrtm-2.0/components/c++/opencv-rtcs/ Affine CameraViewer Edge Histogram ImageSubtraction Perspective Scale Template BackGroundSubtractionSimple Chromakey Findcontour Hough ObjectTracking RockPaperScissors Sepia Translate Binarization DilationErosion Flip ImageCalibration OpenCVCamera Rotate SubtractCaptureImage rtc.conf
An executable file (*** Comp) is installed under each sample directory, so please try it.
If you want to change the source of OpenRTM-aist itself and use it, you can get the source code of OpenRTM-aist and build it.
I will introduce the procedure to build in the environment where only the minimum library required for OpenRTM-aist source build is installed using Dockerfile.
I use the docker build command to generate a Docker image, but it is recommended because it can be built in a clean environment every time.
If you are using Docker for the first time, please install it as follows. If you have an Ubuntu desktop environment, the docker.io package is probably provided.
sudo apt install docker.io
The OpenRTM-aist 2.1 series source includes Dockerfile for Ubuntu22.04 and 24.04.
OpenRTM-aist/scripts/ubuntu_2204/Dockerfile OpenRTM-aist/scripts/ubuntu_2404/Dockerfile
The build procedure is as follows. This is a build example for Ubuntu 24.04.
Here, the latest OpenRTM-aist source is obtained from GitHub, but you can do the same procedure for building the modified source.
git clone https://github.com/OpenRTM/OpenRTM-aist sudo docker build -t test -f OpenRTM-aist/scripts/ubuntu_2404/Dockerfile .
If the build finishes without error, you can see that the Docker image named test specified by the -t option has been generated.
sudo docker images REPOSITORY TAG IMAGE ID CREATED SIZE test latest 0bc00f471b64 27 seconds ago 1.52GB
If you modify the source and repeat until the build passes, many images <none> will be generated. You can delete by specifying IMAGE ID with docker rmi, but if you want to delete all at once, it is convenient to execute the following command.
sudo docker rmi $(sudo docker images -f dangling=true -q)
The first line of the Dockerfile used in the source build looks like this for Ubuntu 22.04 and 24.04 respectively, and uses the image with this name uploaded to the Docker hub.
FROM openrtm/devel-rtm:ubuntu22.04
or
FROM openrtm/devel-rtm:ubuntu24.04OpenRTM-aist/scripts/ubuntu_2204/Dockerfile.devel-rtm OpenRTM-aist/scripts/ubuntu_2404/Dockerfile.devel-rtm
The script introduced here is used when creating the deb package for the release of OpenRTM-aist.
If you want to modify and install the OpenRTM-aist source, you can easily try it with the deb package.
This script performs from source build to deb package generation with Docker, and performs the process of copying the deb package that is the deliverable from the Docker container to the host side at once.
The procedure for creating a deb package for Ubuntu 24.04 is as follows.
git clone https://github.com/n-kawauchi/RTM-src-pkgs-docker-build cd RTM-src-pkgs-docker-build/ubuntu_2404/ sh build-cxx.sh ls -l drwxr-xr-x 2 root root 4096 Jun 30 15:53 cxx-deb-pkgs/
The deb package of the deliverable is output under cxx-deb-pkgs. Since the owner is root, it is easier to access if you change it to the execution user.
Since we are using a Docker image with ROS installed, a package for ROS2 (openrtm2-ros2 -tp) will also be generated. The SSM package (openrtm2-ssm-tp), which was added in version 2.1, will also be generated.
ls cxx-deb-pkgs/ openrtm2_2.1.0-0_amd64.buildinfo openrtm2-dev_2.1.0-0_amd64.deb openrtm2-naming_2.1.0-0_amd64.deb openrtm2_2.1.0-0_amd64.changes openrtm2-doc_2.1.0-0_all.deb openrtm2-ros2-tp_2.1.0-0_amd64.deb openrtm2_2.1.0-0_amd64.deb openrtm2-example_2.1.0-0_amd64.deb openrtm2-ssm-tp_2.1.0-0_amd64.deb openrtm2_2.1.0-0.dsc openrtm2-idl_2.1.0-0_amd64.deb openrtm2-ssm-tp-dbgsym_2.1.0-0_amd64.ddeb
(※)Running this script in an amd64 environment will generate a deb package for amd64, and running it in an aarch64 environment will generate a deb package for arm64.
If you want to modify and install the OpenRTM-aist source, comment out the following part of the build-cxx.sh script, place the OpenRTM-aist source in the same directory as build-cxx.sh, and execute it.
#----- OpenRTM-aist
echo "${password}" | sudo -S rm -rf ${TARGET}-*
#rm -rf OpenRTM-aist <-- Comment out
#git clone https://github.com/OpenRTM/OpenRTM-aist <-- Comment outAs with C ++ source build, I will introduce a script that performs from source build to deb package generation with Docker, and the process of copying the deb package that is the deliverable from the Docker container to the host side at once.
The procedure for creating a deb package for Ubuntu 24.04 is as follows.
git clone https://github.com/n-kawauchi/RTM-src-pkgs-docker-build cd RTM-src-pkgs-docker-build/ubuntu_2404/ sh build-python.sh
The deb package of the deliverable is output under python-deb-pkgs.
ls python-deb-pkgs/ openrtm2-python3_2.1.0-0_amd64.changes openrtm2-python3_2.1.0-0.dsc openrtm2-python3_2.1.0-0_amd64.deb openrtm2-python3-example_2.1.0-0_amd64.deb
If you want to modify and install the OpenRTM-aist-Python source, comment out the following part of the build-python.sh script. Place the OpenRTM-aist-Python source in the same directory as build-python.sh and Dockerfile-python-deb and execute it.
#----- OpenRTM-aist-Python
echo "${password}" | sudo -S rm -rf ${TARGET}-*
#-------- Comment out
#rm -rf OpenRTM-aist-Python
#git clone https://github.com/OpenRTM/OpenRTM-aist-Python
#cd OpenRTM-aist-Python
#git checkout ${BRANCH}
#cd -
#-------- Comment outAs with C ++ source build, I will introduce a script that performs from source build to deb package generation with Docker, and the process of copying the deb package that is the deliverable from the Docker container to the host side at once.
The procedure for creating a deb package for Ubuntu 24.04 is as follows.
git clone https://github.com/n-kawauchi/RTM-src-pkgs-docker-build cd RTM-src-pkgs-docker-build/ubuntu_2404/ sh build-java.sh
The deb package of the deliverable is output under java-deb-pkgs, and the source package is output under java-src-pkgs.
ls java-deb-pkgs/ openrtm2-java_2.1.0-0_amd64.buildinfo openrtm2-java_2.1.0-0_amd64.deb openrtm2-java-doc_2.1.0-0_all.deb openrtm2-java_2.1.0-0_amd64.changes openrtm2-java_2.1.0-0.dsc openrtm2-java-example_2.1.0-0_amd64.deb
ls java-src-pkgs/ OpenRTM-aist-Java-2.1.0-jar.zip OpenRTM-aist-Java-2.1.0.tar.gz OpenRTM-aist-Java-2.1.0.zip
If you want to modify and install the OpenRTM-aist-Python source, comment out the following part of the build-python.sh script. Place the OpenRTM-aist-Python source in the same directory as build-python.sh and Dockerfile-python-deb and execute it.
#----- OpenRTM-aist-Java
echo "${password}" | sudo -S rm -rf ${TARGET}-*
#-------- Comment out
#rm -rf OpenRTM-aist-Java
#git clone https://github.com/OpenRTM/OpenRTM-aist-Java
#cd OpenRTM-aist-Java
#git checkout ${BRANCH}
#cd -
#-------- Comment outThe contents of each package are as follows.
openrtm2 contains runtime libraries and commands.
/usr/bin/rtcd2 /usr/bin/rtcprof2 /usr/bin/rtm2-config /usr/bin/rtm2-naming
/usr/etc/logger/rtc.fluentbit_stream.conf /usr/etc/rtc.conf.sample2 /usr/etc/rtc.names.ssl.conf /usr/etc/ssl/rtc.ssl.conf /usr/lib/x86_64-linux-gnu/pkgconfig/openrtm2.pc
/usr/lib/x86_64-linux-gnu/libRTC2.a /usr/lib/x86_64-linux-gnu/libRTC2.so.2.1.0 ... /usr/lib/x86_64-linux-gnu/librtmCamera2.so /usr/lib/x86_64-linux-gnu/librtmManipulator2.so ... /usr/lib/x86_64-linux-gnu/openrtm-2.1/ec/LogicalTimeTriggeredEC.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/local_service/FileNameservice.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/logger/FluentBit.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/sdo/ComponentObserverConsumer.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/sdo/ExtendedFsmServiceProvider.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/sdo/LoggerConsumer.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/ssl/SSLTransport.so
Start name server.
/usr/bin/rtm2-naming
openrtm2-dev contains the commands and headers needed for development.
/usr/bin/rtm2-skelwrapper
/usr/include/coil-2.1/coil/Affinity.h /usr/include/coil-2.1/coil/Async.h ... /usr/include/openrtm-2.1/rtm/BufferBase.h /usr/include/openrtm-2.1/rtm/BufferStatus.h ... /usr/include/openrtm-2.1/rtm/config_rtc.h /usr/include/openrtm-2.1/rtm/ext/FastRTPSMessageInfo.h /usr/include/openrtm-2.1/rtm/ext/ROSMessageInfo.h /usr/include/openrtm-2.1/rtm/idl/BasicDataType.hh /usr/include/openrtm-2.1/rtm/idl/BasicDataTypeSkel.h ... /usr/include/openrtm-2.1/rtm/idl/SharedMemoryStub.h /usr/include/openrtm-2.1/rtm/version.h
/usr/lib/x86_64-linux-gnu/cmake/openrtm-2.1/OpenRTMConfig.cmake /usr/lib/x86_64-linux-gnu/cmake/openrtm-2.1/OpenRTMConfigVersion.cmake /usr/share/openrtm-2.1/py_helper/skel_wrapper.py /usr/share/openrtm-2.1/py_helper/yat.py
openrtm2-example contains samples for standalone RTC and loadable RTC respectively.
/usr/share/openrtm-2.1/components/c++/examples/CompositeComp /usr/share/openrtm-2.1/components/c++/examples/ConfigSampleComp ... /usr/share/openrtm-2.1/components/c++/examples/rtc.conf
/usr/share/openrtm-2.1/components/c++/examples/rtc/ConfigSample.so /usr/share/openrtm-2.1/components/c++/examples/rtc/ConsoleIn.so ... /usr/share/openrtm-2.1/components/c++/examples/rtc/Throughput.so
ROS2 communication function library is installed.
/usr/lib/x86_64-linux-gnu/openrtm-2.1/transport/FastRTPSTransport.so /usr/lib/x86_64-linux-gnu/openrtm-2.1/transport/ROS2Transport.so
SSM and the SSM communication function library will be installed.
/usr/bin/ssm-coordinator /usr/bin/ssm-date ... /usr/share/openrtm-2.1/transport/SSMTransport.so
openrtm2-doc contains Japanese and English class references and IDL interface definition references.
/usr/share/openrtm-2.1/doc/c++/ClassReference/html/BufferBase_8h.html /usr/share/openrtm-2.1/doc/c++/ClassReference/html/BufferBase_8h__dep__incl.map ... /usr/share/openrtm-2.1/doc/c++/ClassReference/html/structSDOPackage_1_1Organization__impl_1_1sdo__id.html
/usr/share/openrtm-2.1/doc/idl/IDLReference/html/BasicDataType_8idl.html /usr/share/openrtm-2.1/doc/idl/IDLReference/html/BasicDataType_8idl_dep_incl.map ... /usr/share/openrtm-2.1/doc/idl/IDLReference/html/unionSDOPackage_1_1Numeric.html
/usr/share/openrtm-2.1/doc/c++/ClassReference-en/html/BufferBase_8h.html /usr/share/openrtm-2.1/doc/c++/ClassReference-en/html/BufferBase_8h__dep__incl.map ... /usr/share/openrtm-2.1/doc/C++/ClassReference-en/html/version_8h_source.html
/usr/share/openrtm-2.1/doc/idl/IDLReference-en/html/BasicDataType_8idl.html /usr/share/openrtm-2.1/doc/idl/IDLReference-en/html/BasicDataType_8idl__dep__incl.map ... /usr/share/openrtm-2.1/doc/idl/IDLReference-en/html/unionSDOPackage_1_1Numeric.html
/etc/profile.d/openrtm2-idl.sh /usr/include/openrtm-2.1/rtm/idl/BasicDataType.idl /usr/include/openrtm-2.1/rtm/idl/CameraCommonInterface.idl ... /usr/include/openrtm-2.1/rtm/idl/SharedMemory.idl /usr/share/openrtm-2.1/idl/BasicDataType.idl /usr/share/openrtm-2.1/idl/CameraCommonInterface.idl ... /usr/share/openrtm-2.1/idl/SharedMemory.idl
/usr/bin/rtcd2_python3 /usr/bin/rtcprof2_python3
/usr/lib/python3/dist-packages/OpenRTM_aist/*
/usr/lib/python3/dist-packages/OpenRTM-aist.pth
/usr/lib/python3/dist-packages/OpenRTM_aist/utils/__init__.py /usr/lib/python3/dist-packages/OpenRTM_aist/utils/rtc-template/* /usr/lib/python3/dist-packages/OpenRTM_aist/utils/rtcd/* /usr/lib/python3/dist-packages/OpenRTM_aist/utils/rtcprof/* /usr/lib/python3/dist-packages/OpenRTM_aist/utils/rtm-naming/*
/usr/share/openrtm-2.0/components/python3/__init__.py /usr/share/openrtm-2.0/components/python3/component.conf /usr/share/openrtm-2.0/components/python3/rtcd.conf /usr/share/openrtm-2.0/components/python3/AutoControl/* /usr/share/openrtm-2.0/components/python3/AutoTest/* /usr/share/openrtm-2.0/components/python3/CSPSample/* /usr/share/openrtm-2.0/components/python3/CSPSelectSample/* /usr/share/openrtm-2.0/components/python3/CSPStaticFsmSample/* /usr/share/openrtm-2.0/components/python3/Composite/* /usr/share/openrtm-2.0/components/python3/ConfigSample/* /usr/share/openrtm-2.0/components/python3/ExtTrigger/* /usr/share/openrtm-2.0/components/python3/MobileRobotCanvas/* /usr/share/openrtm-2.0/components/python3/SeqIO/* /usr/share/openrtm-2.0/components/python3/Serializer/* /usr/share/openrtm-2.0/components/python3/SimpleIO/* /usr/share/openrtm-2.0/components/python3/SimpleService/* /usr/share/openrtm-2.0/components/python3/Slider_and_Motor/* /usr/share/openrtm-2.0/components/python3/Throughput/* /usr/share/openrtm-2.0/components/python3/TkJoyStick/ /usr/share/openrtm-2.0/components/python3/TkLRFViewer/*
/etc/profile.d/openrtm-java.sh /usr/bin/rtcd2_java /usr/bin/rtcprof2_java /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/License.txt /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/LogicalTimeTriggeredEC.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/NameserviceFile.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/OpenRTM-aist-2.1.0.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/commons-cli-1.1.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/jna-4.2.2.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/jna-platform-4.2.2.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/rtcd.jar /usr/lib/x86_64-linux-gnu/openrtm-2.1/jar/rtcprof.jar
Java version sample RTC, Class file, source file, startup script
/usr/share/openrtm-2.1/components/java/* /usr/share/openrtm-2.1/components/java/RTMExamples/AutoTest/* /usr/share/openrtm-2.1/components/java/RTMExamples/Composite/* /usr/share/openrtm-2.1/components/java/RTMExamples/ConfigSample/* /usr/share/openrtm-2.1/components/java/RTMExamples/ExtTrigger/* /usr/share/openrtm-2.1/components/java/RTMExamples/Fsm/* /usr/share/openrtm-2.1/components/java/RTMExamples/GUIIn/* /usr/share/openrtm-2.1/components/java/RTMExamples/MyService.idl /usr/share/openrtm-2.1/components/java/RTMExamples/SeqIO/* /usr/share/openrtm-2.1/components/java/RTMExamples/SimpleIO/* /usr/share/openrtm-2.1/components/java/RTMExamples/SimpleService/* /usr/share/openrtm-2.1/components/java/RTMExamples/SinCosOut/* /usr/share/openrtm-2.1/components/java/RTMExamples/StaticFsm/* /usr/share/openrtm-2.1/components/java/RTMExamples/Throughput/* /usr/share/openrtm-2.1/components/java/RTMExamples/TopicTest/*
openrtm2-java-doc contains Japanese and English class references.
/usr/share/openrtm-2.1/doc/java/JavaDoc/OpenRTM/class-use/* /usr/share/openrtm-2.1/doc/java/JavaDoc/RTC/class-use/* /usr/share/openrtm-2.1/doc/java/JavaDoc/RTM/class-use/* ... /usr/share/openrtm-2.1/doc/java/JavaDoc/jp/go/aist/rtm/Constants.html /usr/share/openrtm-2.1/doc/java/JavaDoc/jp/go/aist/rtm/RTC/buffer/class-use/* /usr/share/openrtm-2.1/doc/java/JavaDoc/jp/go/aist/rtm/RTC/executionContext/class-use/* ... /usr/share/openrtm-2.1/doc/java/JavaDocEn/OpenRTM/class-use/* /usr/share/openrtm-2.1/doc/java/JavaDocEn/RTC/class-use/* /usr/share/openrtm-2.1/doc/java/JavaDocEn/RTM/class-use/*
In openrtp installation, since so many files are installed, the listing is not made. Depend on your needs, use the following command.
$ dpkg -L openrtp2