Difference between revisions of "Install daemons v3"

From RobotinoWiki
Line 1: Line 1:
[[debrepository]]
+
Read '''[[debrepository|how to setup apt sources]]''' about how to tell Robotino where to download the packages.
  
The following steps must be executed with root privileges.
+
After configuring apt run the following commands
<pre>
 
sudo su
 
</pre>
 
or login as root right away using password for user root: dorp6
 
 
 
In order to use the API2 you need to replace packages on Robotino. The easiest way is to give Robotino Internet access. The file '''/etc/apt/sources.list''' already imports the Robotino package repository
 
<pre>
 
deb http://doc.openrobotino.org/download/packages/amd64 ./
 
</pre>
 
 
 
so you can simply run
 
 
<pre>
 
<pre>
 
apt-get update
 
apt-get update
apt-get install rec-rpc-qt4.8.0 robotino-common robotino_daemons robotino-api2 robotino-examples robotino3-firmware robview2
+
apt-get install rec-rpc robotino-common robotino_daemons robotino-api2 robotino-examples robotino3-firmware
</pre>
 
 
 
Questions during the installation process
 
<pre>
 
Install these packages without verification [y/N]? y
 
</pre>
 
 
 
Alternatively you can download the packages to your computer. Replace * by the latest version.
 
<pre>
 
wget http://doc.openrobotino.org/download/packages/amd64/rec-rpc-qt4.8.0_*_amd64.deb
 
wget http://doc.openrobotino.org/download/packages/amd64/robotino-common_*_amd64.deb
 
wget http://doc.openrobotino.org/download/packages/amd64/robotino_daemons_*_amd64.deb
 
wget http://doc.openrobotino.org/download/packages/amd64/robotino-api2_*_amd64.deb
 
wget http://doc.openrobotino.org/download/packages/amd64/robotino-examples_*_amd64.deb
 
wget http://doc.openrobotino.org/download/packages/amd64/robview3_*_amd64.deb
 
</pre>
 
 
 
Then copy the files to Robotino using scp or ftp. On Robotino do
 
<pre>
 
dpkg -i rec-rpc-qt4.8.0_*_amd64.deb
 
dpkg -i robotino-common_*_amd64.deb
 
dpkg -i robotino-daemons_*_amd64.deb
 
dpkg -i robotino-api2_*_amd64.deb
 
dpkg -i robotino-examples_*_amd64.deb
 
dpkg -i robview3_*_amd64.deb
 
 
</pre>
 
</pre>

Revision as of 15:38, 8 August 2015

Read how to setup apt sources about how to tell Robotino where to download the packages.

After configuring apt run the following commands

apt-get update
apt-get install rec-rpc robotino-common robotino_daemons robotino-api2 robotino-examples robotino3-firmware