-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.htm
More file actions
149 lines (118 loc) · 3.88 KB
/
index.htm
File metadata and controls
149 lines (118 loc) · 3.88 KB
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
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HyperHDR APT Repository</title>
<meta name="google-site-verification" content="-_JJ8q_AJiflrOSxgMCR-LhY--AhaSzF-BsgRjXmiAg" />
<meta name="msvalidate.01" content="2DC84508C85A15B25E1C704EA376CA0C" />
<meta name="yandex-verification" content="74fda8bb12e5ee00" />
<style>
/* --- Ogólne style Jakella --- */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
margin: 2rem auto;
max-width: 900px;
padding: 0 1rem;
background: #fff;
color: #333;
}
h1, h2, h3 {
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: bold;
}
hr {
border: 0;
border-top: 1px solid #ccc;
margin: 2rem 0;
}
p {
margin-bottom: 1rem;
}
p[align="center"], .center {
text-align: center;
}
ul, ol {
margin: 0 0 1rem 2rem;
}
pre {
background: #f6f8fa;
padding: 1rem;
overflow: auto;
border-radius: 6px;
margin: 1rem 0;
}
/* --- Highlight.js / Jakell style minimal inline --- */
.highlight {
background: #f6f8fa;
padding: 0.5em;
border-radius: 6px;
overflow-x: auto;
}
code {
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 0.95em;
}
h1 {
padding-bottom: 0.3em;
font-size: 2em;
border-bottom: 1px solid #eaecef;
}
span.nb { color: #0086b3; } /* keyword / command */
span.nt { color: #795da3; } /* type / number */
span.o { color: #333; } /* operator */
span.nv { color: #333; } /* variable */
span.s2 { color: #183691; } /* string */
span.si { color: #183691; } /* interpolation */
span.se { color: #333; } /* escape */
span.p { color: #333; } /* punctuation */
</style>
</head>
<body>
<p align="center">
<img src="hyperhdrlogo.png" alt="HyperHDR Logo" />
</p>
<h3>
Home for HyperHDR APT repository & other installers
(e.g.
<a href="#rpm">RPM</a>,
<a href="#archlinux">ArchLinux</a>)
and our Wiki:
</h3>
<p align="center">
<a href="/wiki"><img src="wiki.svg" style="transform: scaleX(0.8); transform-origin: center center;" alt="HyperHDR Wiki Logo" /></a>
</p>
<h1>HyperHDR Debian & Ubuntu APT repository</h1>
<p>
1) <strong>Installing</strong>
</p>
<p>All HyperHDR SD images since version v19beta2 are linked to the HyperHDR repository so you don't need this step if you use it.</p>
<p>If you have HyperHDR manually installed from Github or are using old SD images before v19beta2, remove HyperHDR first.</p>
<pre class="highlight"><code><span class="nb">sudo </span>apt remove hyperhdr
</code></pre>
<p>Add HyperHDR repository and install the application.</p>
<pre class="highlight"><code><span class="nb">type</span> -p curl <span class="o">></span>/dev/null <span class="o">||</span> <span class="nb">sudo </span>apt install curl -y
curl -fsSL https://awawa-dev.github.io/hyperhdr.public.apt.gpg.key | <span class="nb">sudo dd </span><span class="nv">of</span>=/usr/share/keyrings/hyperhdr.public.apt.gpg.key \
&& sudo chmod go+r /usr/share/keyrings/hyperhdr.public.apt.gpg.key \
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hyperhdr.public.apt.gpg.key] https://awawa-dev.github.io $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hyperhdr.list > /dev/null \
&& sudo apt update \
&& sudo apt install hyperhdr -y
</code></pre>
<p>
2) <strong>Upgrade</strong>
</p>
<p>If you already have a HyperHDR repository set up, you can easily update HyperHDR later:</p>
<pre class="highlight"><code><span class="nb">sudo </span>apt update && sudo apt install hyperhdr -y
</code></pre>
<hr />
<h1 id="rpm">RPM packages</h1>
<div id="RpmTarget"></div>
<hr />
<h1 id="archlinux">ArchLinux</h1>
<div id="ArchTarget"></div>
<script src="https://awawa-dev.github.io/scripts.js"></script>
</body>
</html>