forked from CelestiaProject/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deb.html
148 lines (131 loc) · 5.25 KB
/
deb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE HTML>
<html>
<head>
<title>Celestia: Debian-based</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body class="landing">
<div id="page-wrapper">
<!-- Header -->
<header id="header">
<h1 id="logo"><a href="/">Celestia</a></h1>
<nav id="nav">
<ul>
<li><a href="/">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="news.html">News</a></li>
<li>
<a href="#">Documentation</a>
<ul>
<li><a href="guides.html">Celestia Guides</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="sites.html">Related Sites</a></li>
</ul>
</li>
<li>
<a href="#">Add-Ons</a>
<ul>
<li><a href="addons.html">Download Links</a></li>
<li>
<a href="#">LUA Tools</a>
<ul>
<li><a href="lua-universal-tools.html">LUA Universal Tools</a></li>
<li><a href="lua-other.html">Other</a></li>
</ul>
</li>
<li><a href="#">Utilites</a>
<ul>
<li><a href="config-manager.html">Celestia Config Manager</a></li>
<li><a href="utilites.html">Other</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="/forum">Forum</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>Celestia installation on Debian-based distributions</h2>
</header>
<!-- Content -->
<section id="content">
<header class="minor">
<h3>Celestia 1.6.4 on Debian 10/11/12 (buster/bullseye/bookworm) and derived systems:</h3>
</header>
<pre>
<code>
# Download OpenGPG key for validate repository signatures
$ wget https://celestiaproject.space/celestiaproject.key
# Check the downloaded key
$ gpg --keyid-format long celestiaproject.key
gpg: WARNING: no command supplied. Trying to guess what you mean ...
pub rsa4096/982A4D8BCC132493 2023-11-04 [SC]
0CE58AD6307B38B03C681111982A4D8BCC132493
uid Celestia Development Team <team@celestiaproject.space>
sub rsa4096/9778A86030002CBE 2023-11-04 [E]
# Import the key
$ sudo apt-key add celestiaproject.key
# Update apt sources.list
$ echo "deb https://celestiaproject.space/debian/ ${SUITE} main" | sudo tee /etc/apt/sources.list.d/celestia.list
# If Celestia sources are required then also add
$ echo "deb-src https://celestiaproject.space/debian/ ${SUITE} main" | sudo tee -a /etc/apt/sources.list.d/celestia.list
# Update apt database and install Celestia
sudo apt update && sudo apt install celestia
</code>
</pre>
<p>Where <b>SUITE</b> is <em>buster</em>, <em>bullseye</em> or <em>bookworm</em> for 10, 11 or 12 accordingly.</p>
<header class="minor">
<h3>Celestia 1.7 on Debian 11/12 (bullseye/bookworm) and derived systems:</h3>
</header>
<pre>
<code>
# Download OpenGPG key for validate repository signatures
$ curl -fsSL -o celestia.gpg https://download.opensuse.org/repositories/home:/munix9:/unstable/Debian_${VERSION}/Release.key
# Check the downloaded key
$ gpg --keyid-format long celestia.gpg
gpg: WARNING: no command supplied. Trying to guess what you mean ...
pub rsa2048/BDF3F6ACD4D81407 2014-06-09 [SC] [expires: 2025-04-10]
3FE0C0AC1FD6F1034B818A14BDF3F6ACD4D81407
uid home:munix9 OBS Project <home:munix9@build.opensuse.org>
# Import the key
$ sudo apt-key add celestia.gpg
# Update apt sources.list
echo "deb https://download.opensuse.org/repositories/home:/munix9:/unstable/Debian_${VERSION}/ ./" | sudo tee /etc/apt/sources.list.d/celestia-obs.list
# Update apt database and install Celestia
sudo apt update && sudo apt install celestia
</code>
</pre>
<p>Where <b>VERSION</b> is 11 or 12.</p>
</section>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://twitter.com/CelestiaProject" target="_blank" class="icon alt fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/CelestiaProject/Celestia" target="_blank" class="icon alt fa-github"><span class="label">GitHub</span></a></li>
<li><a href="mailto:team@celestiaproject.space" class="icon alt fa-envelope"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li>Celestia is Copyright © 2001-<script type="text/javascript">document.write(new Date().getFullYear())</script>, Celestia Development Team.</li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>