@Larry-Pinney Indeed, this is FOSS, embrace the community, Onion!
Best posts made by Zogg Baubas
-
RE: So close! HFS+ support
@Duane-Morin Onion devs previously explained, that kernel modules must be build on the same machine that the kernel was build. Thats why you can't install kmod* packages from LEDE repository when using OnionOS, even if kernels are exactly the same.
You have to build an image yourself, along with wanted kernel modules. -
RE: [SOLVED]Question about building custom image
@Iker Its a no-go for me without working WiFi... It would be great if you'd share how to have preconfigured working wifi with LEDE.
-
RE: [SOLVED]Question about building custom image
@Costas-Costas said in [SOLVED]Question about building custom image:
@administrators can you please enable /dev/mem and rebuild the firmware to fix the broken Fast-gpio ?
I do 2nd that.
-
RE: [Solved] Python - Dictionary?
gpsfile=open('/root/gpsinfo.txt', 'r') gpsinfo=gpsfile.read()
read()
method returns string here, as you are simply reading a file.If this is the actual data from the file, with double quotes around key names and values:
{"age":6357,"latitude":"38.1234","longitude":"-80.1234","elevation":"1234.5","course":"12.34","speed":"N"}
Then you can use
json
to load it up. This should work:#!/usr/bin/env python import json from pprint import pprint with file('/root/gpsinfo.txt', 'r') as gpsfile: gpsinfo = json.load(gpsfile) age = gpsinfo['age'] lat = gpsinfo['latitude'] lon = gpsinfo['longitude'] elv = gpsinfo['elevation'] cou = gpsinfo['course'] spd = gpsinfo['speed'] pprint(("Age: " + age, "Latitude: " + lat, "Latitude: " + lon, "Longitude: " + elv, "Course: " + cou, "Speed: " + spd)) exit()
-
RE: omega2 plus sdcard not working
@Lazar-Demin said in omega2 plus sdcard not working:
Expect new articles on running the Omega's OS from an SD card in the near future!
YES! YES!!
We'll also be updating the wiki to differentiate between the classic Omega and the Omega2!
Stay tuned!
Give the community the keys to edit wiki ourselves.
-
RE: omega2 plus sdcard not working
Tested with my new 256GB sdcard and it finally works! With
0.1.8 b145
:[ 4763.886240] mmc0: new high speed SDXC card at address 2143 [ 4763.893261] mmcblk0: mmc0:2143 APPSD 250 GiB [ 4763.899335] mmcblk0: p1 [ 4763.902012] mmcblk0: p1 size 524352600 extends beyond EOD, truncated