-
Notifications
You must be signed in to change notification settings - Fork 300
/
index-suse.html
68 lines (58 loc) · 1.69 KB
/
index-suse.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-us"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>weeWX: Installation using zypper</title>
<style>
body{
font-family: Verdana,Helvetica,sans-serif;
margin-left: 1em;
margin-right: 1em;
}
h1 {
font-family: Arial,Helvetica,sans-serif;
margin-top: 2em;
margin-bottom: 0;
}
h2 {
font-family: Arial,Helvetica,sans-serif;
margin-top: 1.5em;
margin-bottom: 0;
}
.title {
font-size: 180%;
clear: left;
margin-top: 0px;
}
.tty {
font-family: "Courier New", Courier, monospace;
background-color: #eeeee0;
border: 1px solid #ddddaa;
padding: 3px 8px 3px 8px;
margin: 5px 15px 5px 15px;
webkit-border-radius: 6px;
moz-border-radius: 6px;
border-radius: 6px;
white-space: pre;
line-height: normal;
}
</style>
</head>
<body>
<h1 class="title">SUSE repository for weeWX</h1>
<h2>Tell the system to trust weewx.com</h2>
<pre class='tty'>sudo rpm --import http://weewx.com/keys.html</pre>
<h2>Configure</h2>
For python3 (suse 15):
<pre class='tty'>curl -s http://weewx.com/suse/weewx-suse15.repo | sudo tee /etc/zypp/repos.d/weewx.repo</pre>
For python2 (suse 12):
<pre class='tty'>curl -s http://weewx.com/suse/weewx-suse12.repo | sudo tee /etc/zypp/repos.d/weewx.repo</pre>
<h2>Install weeWX</h2>
<pre class='tty'>sudo zypper install weewx</pre>
<h2>Update weeWX</h2>
<pre class='tty'>sudo zypper update weewx</pre>
</body>
</html>