Changes for page Armbian OS instruction
Last modified by Edwin Chen on 2025/02/26 08:18
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Attachments (0 modified, 8 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.Xiao ye1 +XWiki.Xiaoling - Content
-
... ... @@ -15,6 +15,9 @@ 15 15 * LPS8v2 16 16 * MS20 17 17 18 +(% style="display:none" %) 19 + 20 + 18 18 = 2. Development Guide = 19 19 20 20 ... ... @@ -21,11 +21,9 @@ 21 21 For advanced users to develop Driver/ Linux etc. 22 22 23 23 24 - 25 25 == 2.1 How to recompile LoRaWAN Concentrator Driver ( dragino-fwd package). == 26 26 27 27 28 - 29 29 === (% style="color:blue" %)**Step 1. Clone dragino-fwd package**(%%) === 30 30 31 31 ... ... @@ -42,7 +42,6 @@ 42 42 [[image:image-20220527151010-1.png]] 43 43 44 44 45 - 46 46 === (% style="color:blue" %)**Step 2. Compile dragino_fwd**(%%) === 47 47 48 48 ... ... @@ -62,7 +62,6 @@ 62 62 [[image:image-20220527154311-4.png||height="385" width="773"]] 63 63 64 64 65 - 66 66 === (% style="color:blue" %)**Step 3. Install the dragino_fwd**(%%) === 67 67 68 68 ... ... @@ -74,7 +74,6 @@ 74 74 [[image:image-20220527154811-5.png]] 75 75 76 76 77 - 78 78 === (% style="color:blue" %)**Step 4. Test**(%%) === 79 79 80 80 ... ... @@ -93,13 +93,10 @@ 93 93 (% style="background-color:yellow; color:green" %)**systemctl stop draginofwd** 94 94 95 95 96 - 97 97 == 2.2 How to clone Complete OS on the EMMC to SD card == 98 98 99 - 100 100 == 2.3 How to flash SD card to (eMMC) device's built-in Memory == 101 101 102 - 103 103 === 2.3.1 Prepare an SD card with OS === 104 104 105 105 ... ... @@ -163,7 +163,6 @@ 163 163 (% style="color:red" %)**Note: After the flash is complete, power off the device and then remove the SD card.** 164 164 165 165 166 - 167 167 == 2.4 Default Built Version == 168 168 169 169 ... ... @@ -170,10 +170,9 @@ 170 170 [[image:image-20220902155621-1.png]] 171 171 172 172 167 +== 2.5 How to upgrade the nodejs version to the latest. == 173 173 174 -== 2.5: How to upgrade the nodejs version to the latest. == 175 175 176 - 177 177 By default, the nodejs uses the pre-install version v12 which is due to Debian the ultra-stable via ultra-old. 178 178 179 179 [[image:image-20221112145029-2.png]] ... ... @@ -227,7 +227,6 @@ 227 227 ))) 228 228 229 229 230 - 231 231 == 2.6 How to install Grafana and influxdb == 232 232 233 233 ... ... @@ -289,12 +289,142 @@ 289 289 ))) 290 290 291 291 292 -= 3.PackageMaintainNote =284 +== 2.7 How to install BACnet == 293 293 294 294 295 -== 3.1 Default Package Maintain System == 287 +(% class="box infomessage" %) 288 +((( 289 +wget [[http:~~/~~/dragino.vicp.io:6080/bacnet/dragino-bacnet-apps-hp0c-2023-03-01.deb>>url:http://dragino.vicp.io:6080/bacnet/dragino-bacnet-apps-hp0c-2023-03-01.deb]] 290 +dpkg -i dragino-bacnet-apps-hp0c-2023-03-01.deb 291 +))) 296 296 293 +[[image:image-20230327152105-1.png||height="163" width="933"]] 297 297 295 + 296 +=== 2.7.1 Configure BACnet === 297 + 298 + 299 +After BACnet is installed, run commands to modify BACnet configurations 300 + 301 +Note: device_port and bacnet_ip_port are not set to the same 302 + 303 +(% class="box infomessage" %) 304 +((( 305 +nano /etc/config/bacnet 306 +))) 307 + 308 +Examples: 309 + 310 +(% class="box infomessage" %) 311 +((( 312 +config settings 'general' 313 + option bacnet_ip '10.130.2.80' #The IP address of the BACnetIP network, here basically the same IP as the bbmd address below 314 + option bacnet_ip_port '47808' #As with bbmd_port, the purpose of this is to register a Bacnet Server application as a bbmd registration server 315 + option bbmd_address '10.130.2.80' #bbmd is the BACnet registration server. Only one bbmd server is required in the same ip network 316 + option bbmd_port '47808' #In general, 47808 is used as the default port 317 + option bacnet_dev_count '2' #Here is the number of BACnet devices that need to be simulated, if the number is 2, then the following settings must have 2, which are bacdev_1, bacdev_2 318 + 319 +config settings 'bacdev_1' 320 + option device_name 'LHT65N-1' #The identification name of the bacnet device 321 + option device_id '10001' #The unique identification code in the same network segment of BACnet,Scope is(1 - 4194302) 322 + option device_port '47912' #The IP port occupied by Bacnet when it starts, Scope is (1024 - 65535) 323 + 324 +config settings 'bacdev_2' 325 + option device_name 'LHT65N-2' 326 + option device_id '10002' 327 + option device_port '47913' 328 +))) 329 + 330 + 331 +=== 2.7.2 Run BACnet === 332 + 333 + 334 +After the configuration is complete, run the following command to start BACnet, The following are two ways to run BACnet: 335 + 336 +(1)With /etc/config/bacnet configuration, and to run the registration server on the current machine, start it with the following command (configure the /etc/config/bacnet file correctly): 337 + 338 +(% class="box infomessage" %) 339 +((( 340 +bacserver -c -s 341 +))) 342 + 343 +(2)Without /etc/config/bacnet, and to run the registration server on the current machine, start it with the following command: 344 + 345 +(% class="box infomessage" %) 346 +((( 347 +bacserver -s -a 10.130.2.80 -p 47808 348 +))) 349 + 350 +This command simulates two devices, with device IDs 47910 and 47911 351 + 352 +Enter bacserver -h to output help 353 + 354 +(% class="box infomessage" %) 355 +((( 356 +bacserver -h 357 +))) 358 + 359 +[[image:image-20230327154700-3.png]] 360 + 361 + 362 +=== 2.7.3 Read devices and modify devices === 363 + 364 + 365 +Enter baccli -h to output help 366 + 367 +(% class="box infomessage" %) 368 +((( 369 +baccli -h 370 +))) 371 + 372 +[[image:image-20230327165836-1.png]] 373 + 374 +Examples: 375 + 376 +(1)List the current Bacnet devices: 377 + 378 +(% class="box infomessage" %) 379 +((( 380 +baccli -l -a 381 +))) 382 + 383 +[[image:image-20230327174537-3.png]] 384 + 385 +(2)List device information based on device ID: 386 + 387 +(% class="box infomessage" %) 388 +((( 389 +baccli -l -i id 390 +))) 391 + 392 +[[image:image-20230327174556-4.png]] 393 + 394 +(3)List the device details by device ID: 395 + 396 +(% class="box infomessage" %) 397 +((( 398 +baccli -l -v -i id 399 +))) 400 + 401 +(4) Modify the specified attribute value based on the device ID: 402 + 403 +(% class="box infomessage" %) 404 +((( 405 +baccli -i id -p prop -w value 406 +))) 407 + 408 +[[image:image-20230327174853-5.png]] 409 + 410 + 411 +The user can check the data of the device by using the **[[yabe BACnet tool>>https://sourceforge.net/projects/yetanotherbacnetexplorer/]]** 412 + 413 +[[image:image-20230327171824-2.png]] 414 + 415 += = 416 + 417 + 418 +== 3.1 Default Package Maintain System == 419 + 298 298 === 3.1.1 How Package-Auto-Update works? === 299 299 300 300 ... ... @@ -342,7 +342,6 @@ 342 342 [[image:1661305258501-636.png]] 343 343 344 344 345 - 346 346 === 3.1.2 How to manually update core packages? === 347 347 348 348 ... ... @@ -352,7 +352,6 @@ 352 352 [[image:1661305328295-218.png]] 353 353 354 354 355 - 356 356 === 3.1.3 How to manually update other packages? === 357 357 358 358 ... ... @@ -359,10 +359,8 @@ 359 359 For the other packages, you have to access the device's CLI to do it via the apt command. 360 360 361 361 362 - 363 363 == 3.2 Set up a 3^^rd^^ party package maintain server == 364 364 365 - 366 366 === 3.2.1 Overview === 367 367 368 368 ... ... @@ -369,7 +369,6 @@ 369 369 Customers can use their own package maintenance system instead of using the default one from Dragino. They need to set up a package maintenance system for Debian. Lots of instructions are available in Internet, below is a reference instruction. 370 370 371 371 372 - 373 373 === 3.2.2 Install Apache2 HTTP server === 374 374 375 375 ... ... @@ -376,7 +376,6 @@ 376 376 (% style="background-color:yellow; color:green" %)**apt install apache2** 377 377 378 378 379 - 380 380 === 3.2.3 Creating Package Directories === 381 381 382 382 ... ... @@ -413,7 +413,6 @@ 413 413 └── dragino ~-~-> (% style="background-color:yellow; color:green" %)**This is the directory to store the packages. User can change it to other name.** 414 414 415 415 416 - 417 417 === 3.2.4 Get deb packages === 418 418 419 419 ... ... @@ -427,7 +427,6 @@ 427 427 **~ (% style="background-color:yellow; color:green" %)cp ./testing-0808.deb /var/www/html/debian/release/pool/main/d/dragino/(%%)** 428 428 429 429 430 - 431 431 === 3.2.5 Generate Package Index file === 432 432 433 433 ... ... @@ -441,7 +441,6 @@ 441 441 (% style="color:red" %)**Note: Every time a package has been update, above comments need to be executed in the server to get the up-to-date package list.** 442 442 443 443 444 - 445 445 === 3.2.6 Generate Release file === 446 446 447 447 ... ... @@ -458,11 +458,9 @@ 458 458 (% style="background-color:yellow; color:green" %)**./generate-release.sh > Release** 459 459 460 460 461 - 462 462 === 3.2.7 Sign the Release file with gpg and generating Inrelease file === 463 463 464 464 465 - 466 466 ==== (% style="color:blue" %)**Make sure auto-update server has gnupg**(%%) ==== 467 467 468 468 ... ... @@ -545,7 +545,6 @@ 545 545 [[image:1661306420449-569.png]] 546 546 547 547 548 - 549 549 === 3.2.9 Configure the gateway's auto-upgrade rules === 550 550 551 551 ... ... @@ -571,3 +571,6 @@ 571 571 572 572 573 573 [[image:1661306487761-768.png]] 684 + 685 + 686 +
- image-20230327152105-1.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +27.5 KB - Content
- image-20230327152431-2.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +47.5 KB - Content
- image-20230327154700-3.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +26.7 KB - Content
- image-20230327165836-1.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +17.1 KB - Content
- image-20230327171824-2.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +46.1 KB - Content
- image-20230327174537-3.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +8.8 KB - Content
- image-20230327174556-4.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +16.0 KB - Content
- image-20230327174853-5.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.Kilight - Size
-
... ... @@ -1,0 +1,1 @@ 1 +20.0 KB - Content