21388: Delist CentOS 8 support
[arvados.git] / doc / install / packages.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Arvados package repositories
5 ...
6 {% comment %}
7 Copyright (C) The Arvados Authors. All rights reserved.
8
9 SPDX-License-Identifier: CC-BY-SA-3.0
10 {% endcomment %}
11
12 On any host where you install Arvados software, you'll need to add the Arvados package repository.  They're available for several popular distributions.
13
14 * "Red Hat, AlmaLinux, and Rocky Linux":#redhat
15 * "Debian and Ubuntu":#debian
16
17 <notextile>
18 <a id="centos7" style="display: none;"></a>
19 </notextile>
20
21 h3(#redhat). Red Hat, AlmaLinux, and Rocky Linux
22
23 Packages are available for the following Red Hat-based distributions:
24
25 * AlmaLinux 8
26 * RHEL 8
27 * Rocky Linux 8
28
29 To install them with dnf, save this configuration block in @/etc/yum.repos.d/arvados.repo@:
30
31 <notextile>
32 <pre><code>[arvados]
33 name=Arvados
34 baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
35 gpgcheck=1
36 gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-arvados
37 </code></pre>
38 </notextile>
39
40 {% include 'gpg_key_fingerprint' %}
41
42 h3(#debian). Debian and Ubuntu
43
44 Packages are available for recent versions of Debian and Ubuntu.
45
46 First, register the Arvados signing key in apt's database:
47
48 {% include 'install_debian_key' %}
49
50 {% include 'gpg_key_fingerprint' %}
51
52 Then set up the package source by running this command:
53
54 <notextile>
55 <pre><code># <span class="userinput">tee /etc/apt/sources.list.d/arvados.sources &gt;/dev/null &lt;&lt;EOF
56 Types: deb
57 URIs: https://apt.arvados.org/$(lsb_release -cs)
58 Suites: $(lsb_release -cs)
59 Components: main
60 Signed-by: /etc/apt/keyrings/arvados.asc
61 EOF
62 </span></code></pre>
63 </notextile>
64
65 {% include 'notebox_begin' %}
66
67 fn1. Arvados packages for Ubuntu may depend on third-party packages in Ubuntu's "universe" repository.  If you're installing on Ubuntu, make sure you have the universe sources uncommented in @/etc/apt/sources.list@.
68
69 {% include 'notebox_end' %}
70
71 Retrieve the package list:
72
73 <notextile>
74 <pre><code># <span class="userinput">apt update</span>
75 </code></pre>
76 </notextile>