<
From version < 84.1 >
edited by Xiaoye
on 2022/11/21 11:22
To version < 71.1 >
edited by Edwin Chen
on 2022/09/02 15:56
>
Change comment: Uploaded new attachment "image-20220902155621-1.png", version {1}

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.Xiaoye
1 +XWiki.Edwin
Content
... ... @@ -15,6 +15,9 @@
15 15  * LPS8v2
16 16  * MS20
17 17  
18 +
19 +
20 +
18 18  = 2.  Development Guide =
19 19  
20 20  
... ... @@ -109,7 +109,7 @@
109 109  
110 110  2. Formatting the SD card (//Make sure the SD card is empty//)
111 111  
112 -3. //Download the OS image from the **[[release.image>>url:http://repo.dragino.com/release/hp0c-image/]]**: ( File format **dragino-lps8v2-1.7.img** )//
115 +3. //Download the OS image from **[[release.image>>url:http://repo.dragino.com/release/hp0c-image/]]**: ( File format **dragino-lps8v2-1.7.img** )//
113 113  
114 114  4. //A Flash software tool ( Such as v1.7.9 from **[[balenaEtcher>>url:https://www.balena.io/etcher/]]** )//
115 115  
... ... @@ -138,11 +138,9 @@
138 138  
139 139  [[image:image-20220602112058-2.png||height="292" width="646"]]
140 140  
141 -
142 142  [[image:image-20220602112106-3.png||height="301" width="643"]]
143 143  
144 144  
145 -
146 146  Select the (% style="color:red" %)**"1  ext4"**
147 147  
148 148  [[image:image-20220602112113-4.png||height="271" width="642"]]
... ... @@ -153,10 +153,8 @@
153 153  
154 154  [[image:image-20220602112119-5.png||height="309" width="641"]]
155 155  
156 -
157 157  [[image:image-20220602112125-6.png||height="281" width="640"]]
158 158  
159 -
160 160  [[image:image-20220602112131-7.png||height="241" width="638"]]
161 161  
162 162  
... ... @@ -164,131 +164,6 @@
164 164  
165 165  
166 166  
167 -== 2.4 Default Built Version ==
168 -
169 -
170 -[[image:image-20220902155621-1.png]]
171 -
172 -
173 -
174 -== 2.5: How to upgrade the nodejs version to the latest. ==
175 -
176 -
177 -By default, the nodejs uses the pre-install version v12 which is due to Debian the ultra-stable via ultra-old.
178 -
179 -[[image:image-20221112145029-2.png]]
180 -
181 -**If you want to upgrade the nodejs to the latest, please follow to use these commands on the gateway CIL.**
182 -
183 -
184 -#install n, which is an Interactively Manage Your Node.js Versions
185 -
186 -[[image:image-20221112154230-3.png||height="89" width="689"]]
187 -
188 -(% class="box infomessage" %)
189 -(((
190 -**npm install -g n**
191 -)))
192 -
193 -
194 -#Install the latest LTS Node.js release (downloading if necessary)
195 -
196 -[[image:image-20221112154418-4.png||height="184" width="893"]]
197 -
198 -(% class="box infomessage" %)
199 -(((
200 -**n lts**
201 -)))
202 -
203 -
204 -#Remove all downloaded versions except the installed version
205 -
206 -[[image:image-20221112154456-5.png||height="139" width="899"]]
207 -
208 -(% class="box infomessage" %)
209 -(((
210 -**n prune**
211 -)))
212 -
213 -
214 -(% class="box infomessage" %)
215 -(((
216 -**apt remove nodejs -y && apt autoremove -y && reboot**
217 -)))
218 -
219 -
220 -Check the current version
221 -
222 -[[image:image-20221112154724-6.png]]
223 -
224 -(% class="box infomessage" %)
225 -(((
226 -**node -v**
227 -)))
228 -
229 -
230 -
231 -== 2.6 How to install Grafana and influxdb ==
232 -
233 -
234 -=== **Grafana:** ===
235 -
236 -
237 -(% class="box infomessage" %)
238 -(((
239 -curl https:~/~/packages.grafana.com/gpg.key | gpg ~-~-dearmor | sudo tee /usr/share/keyrings/grafana-archive-keyrings.gpg >/dev/null
240 -echo "deb [signed-by=/usr/share/keyrings/grafana-archive-keyrings.gpg] https:~/~/packages.grafana.com/oss/deb stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
241 -apt update && apt install grafana
242 -)))
243 -
244 -
245 -Check the running status:
246 -
247 -
248 -(% class="box infomessage" %)
249 -(((
250 -systemctl status grafana-server
251 -)))
252 -
253 -
254 -configuration path:
255 -
256 -
257 -(% class="box infomessage" %)
258 -(((
259 -/etc/grafana/grafana.ini
260 -)))
261 -
262 -
263 -=== **Influxdb:** ===
264 -
265 -
266 -(% class="box infomessage" %)
267 -(((
268 -curl https:~/~/repos.influxdata.com/influxdb.key | gpg ~-~-dearmor | sudo tee /usr/share/keyrings/influxdb-archive-keyring.gpg >/dev/null
269 -echo "deb [signed-by=/usr/share/keyrings/influxdb-archive-keyring.gpg] https:~/~/repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
270 -apt update && apt install influxdb
271 -)))
272 -
273 -
274 -Check the running status:
275 -
276 -
277 -(% class="box infomessage" %)
278 -(((
279 -systemctl status influxdb
280 -)))
281 -
282 -
283 -configuration path:
284 -
285 -
286 -(% class="box infomessage" %)
287 -(((
288 -/etc/influxdb/influxdb.conf
289 -)))
290 -
291 -
292 292  = 3. Package Maintain Note =
293 293  
294 294  
... ... @@ -306,6 +306,8 @@
306 306  * Devices will check for updates for every boot.
307 307  * Devices will check for updates on every day midnight.
308 308  
183 +
184 +
309 309  (% style="color:blue" %)**What packages will be checked for updates**?
310 310  
311 311  dragino-httpd ~-~- Main Web UI http configuration
... ... @@ -325,6 +325,8 @@
325 325  * Location: http:~/~/repo.dragino.com/release/tool/
326 326  * Changelog: [[http:~~/~~/repo.dragino.com/release/tool/Readme_HP0.txt>>http://repo.dragino.com/release/tool/Readme_HP0.txt]]
327 327  
204 +
205 +
328 328  (% style="color:blue" %)**How to view auto-updated log**
329 329  
330 330  You can view the log on the page of (% style="color:#037691" %)**System ~-~-> Package Management.**
... ... @@ -571,3 +571,5 @@
571 571  
572 572  
573 573  [[image:1661306487761-768.png]]
452 +
453 +
image-20221112145017-1.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -1.9 KB
Content
image-20221112145029-2.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -3.3 KB
Content
image-20221112154230-3.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -5.2 KB
Content
image-20221112154418-4.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -18.2 KB
Content
image-20221112154456-5.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -14.6 KB
Content
image-20221112154724-6.png
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.Xiaoye
Size
... ... @@ -1,1 +1,0 @@
1 -3.2 KB
Content
Copyright ©2010-2022 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0