Difference between revisions of "Debrepository"

From RobotinoWiki
(Created page with "<pre> wget -qO - http://packages.openrobotino.org/keyFile | sudo apt-key add - </pre> ---Ubuntu 12.04 Precise (images 1.x)--- <pre> echo "deb http://packages.openrobotino.org...")
 
(Ubuntu 18.04 Bionic (image version 4.x))
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
==Import key file==
 
<pre>
 
<pre>
 
wget -qO - http://packages.openrobotino.org/keyFile | sudo apt-key add -
 
wget -qO - http://packages.openrobotino.org/keyFile | sudo apt-key add -
 
</pre>
 
</pre>
  
---Ubuntu 12.04 Precise (images 1.x)---
+
==Ubuntu 16.04 Xenial (image version 3.x)==
 
<pre>
 
<pre>
echo "deb http://packages.openrobotino.org/precise precise main" > /etc/apt/sources.list.d/openrobotino.list
+
sudo su
 +
echo "deb http://packages.openrobotino.org/xenial xenial main" > /etc/apt/sources.list.d/openrobotino.list
 +
</pre>
 +
 
 +
==Ubuntu 18.04 Bionic (image version 4.x)==
 +
<pre>
 +
sudo su
 +
echo "deb http://packages2.openrobotino.org bionic main" > /etc/apt/sources.list.d/openrobotino.list
 +
</pre>
 +
 
 +
==Ubuntu 20.04 Focal (image version 5.x)==
 +
<pre>
 +
sudo su
 +
echo "deb http://packages2.openrobotino.org focal main" > /etc/apt/sources.list.d/openrobotino.list
 +
</pre>
 +
 
 +
==Debian Buster==
 +
<pre>
 +
sudo su
 +
echo "deb http://packages2.openrobotino.org buster main" > /etc/apt/sources.list.d/openrobotino.list
 +
</pre>
 +
 
 +
==Install single package==
 +
If you downloaded a single package you need to install all its dependencies manually. This can be done with the following command
 +
<pre>
 +
gdebi my_package_1.0.deb
 
</pre>
 
</pre>

Latest revision as of 11:36, 28 May 2020

Import key file

wget -qO - http://packages.openrobotino.org/keyFile | sudo apt-key add -

Ubuntu 16.04 Xenial (image version 3.x)

sudo su
echo "deb http://packages.openrobotino.org/xenial xenial main" > /etc/apt/sources.list.d/openrobotino.list

Ubuntu 18.04 Bionic (image version 4.x)

sudo su
echo "deb http://packages2.openrobotino.org bionic main" > /etc/apt/sources.list.d/openrobotino.list

Ubuntu 20.04 Focal (image version 5.x)

sudo su
echo "deb http://packages2.openrobotino.org focal main" > /etc/apt/sources.list.d/openrobotino.list

Debian Buster

sudo su
echo "deb http://packages2.openrobotino.org buster main" > /etc/apt/sources.list.d/openrobotino.list

Install single package

If you downloaded a single package you need to install all its dependencies manually. This can be done with the following command

gdebi my_package_1.0.deb