Skip to content

Essentials

Gustav Bernpaintner edited this page Aug 18, 2023 · 4 revisions

Access

Username: pal

Password: pal

Root password: palroot

ARI's ip on the KTH-IoT network is 192.168.128.28.

ARI has a web GUI at http://192.168.128.28` (or http://ari if you've added ari as a hostname for 192.168.128.28).

Write Persistent Changes to ARI Root

In order to make persistent changes to the ARI file system outside of the home folder, you have to run

sudo overlayroot-chroot

If you don't do this, any changes you make outside of the user directory will be removed when ARI is restarted.

ROS Network Setup

In order to get ROS to work over the network, there is a bit of setup you have to do. This is necessary for when you want to access the data published on ARI on your machine without ssh, like when you want to visualize ARI's topics in rviz.

Setup

Add this line to your /etc/hosts file:

192.168.128.28 ari ari-30c aric control embedded

Run these on the command line from which you want to interact with ARI, where you replace with your IP. IMPORTANT: It must be an IP ARI can reach you with, so not localhost.

export ROS_MASTER_URI=http://ari:11311
export ROS_IP=<your-ip>

Explanation

Setting ROS_MASTER_URI on your machine allows it to find the ROS master, allowing you to see all the available nodes and their topics. ROS_MASTER_URI is already set on ARI by default.

Adding the hostnames in /etc/hosts is necessary in order for your machine to communicate with the nodes on ARI. This is because they advertise themselves using a hostname (defined on ARI) and not ARI's IP address. Thus, if your machine doesn't understand the hostname, you will still be able to see the available nodes and topics (since this only requires you to see the ROS master, i.e. having set ROS_MASTER_URI), but you won't be able to communicate with them.

Setting ROS_IP allows ARI to communicate with nodes on your machine. Thus, this is only necessary if you want to publish/run services on your machine that should be reachable from ARI. If all you want is to be able to visualize ARI's topics with rviz, you do not need to set this.

Clone this wiki locally