When you say you installed ROSARIA do you mean you installed it on your machine connected to the robot. To control the robot you need to publish a Twist message on the cmd_vel topic. I believe the topic will be in the RosAria namespace (i.e. it will be /RosAria/cmd_vel) but you can confirm that with rostopic list
.
You need to make sure that your keyboard drives nodes are publishing on the correct topic. You can again figure out which topic the keyboard are publishing on using rostopic list
. If they are not publishing on the same topic that the ROSARIA node on your machine is subscribing to you need to remap the publishing topic either via the command line with rosrun
or using a launch file.
As a quick example on how to remap topics if I had a node named node1 which published on topic /foo and I wanted to remap it to publish on /foo/bar I would run
rosrun <your package> node1 foo:=/foo/bar
You can read more about remapping here Remapping Arguments