Jaburges

Members
  • Posts

    82
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Jaburges's Achievements

Rookie

Rookie (2/14)

3

Reputation

  1. Heads up just raised an issue with the dev: https://github.com/fmartinou/whats-up-docker/issues/324https://github.com/fmartinou/whats-up-docker/issues/324 However its the UNRAID Docker. Some ENV VARs use `HA` as the {trigger_name} and some use `mqtt` They all need to be consistent per docs here: https://fmartinou.github.io/whats-up-docker/#/configuration/triggers/mqtt/https://fmartinou.github.io/whats-up-docker/#/configuration/triggers/mqtt/ `WUD_TRIGGER_MQTT_HA_HASS_PREFIX` `WUD_TRIGGER_MQTT_HA_HASS_ENABLED` `WUD_TRIGGER_MQTT_HA_URL` `WUD_TRIGGER_MQTT_HA_USER` `WUD_TRIGGER_MQTT_HA_PASSWORD` Where `HA` is the {trigger_name}. Can you update @AlexGreenUK? Also FYI @tk40 in case you havent fixed. Confirmed working nicely with the above changes
  2. UGH - fixed it by simply restarting bluetooth on the host /etc/rc.d/rc.bluetooth start SO Bluetooth dongle is being passed through, and the integration works - range isnt great though I've tried increasing the range on the Lock side, but just ordered a USB extension cable
  3. @L0rdRaidenI've updated the firmware files, and the boot config - so the firmware and config files load. Added the Nerd-pack to get BlueZ and i'm able to run `hciconfig` on the host AND the docker. I'm passing the DBus & the device through /dev/bus/usb/XXX/XXX the error I get now is: Failed to start Bluetooth: [org.freedesktop.DBus.Error.ServiceUnknown] The name org.bluez was not provided by any .service files
  4. Hi there, on edge the Web UI link from Unraid pulls up http://IP:5572 which redirects to http://IP:5572/#/dashboard However - the Edge UI auth pop up continually requests auth. each time i try and do anything a new auth pop up. On Chrome however, this happened once, it took me to the Web UI (not the Chrome UI auth box) and i could sign in to the site. no more issues
  5. Ah it seems the magic is with a CNAME not an A record. I used to use a shell script that allowed for A records, but this CNAME set up with docker seems easier
  6. are people still able to use this?? It seems Godaddy is now forcing the use of an IP address x.x.x.x in the 'points to' for the A record 😞
  7. Hey folks, Not really sure what happened - all of a sudden getting errors: Get Docker Details for ip: 192.168.x.x Failed Request failed with status code 503 Get Main Details for ip: 192.168.x.x Failed Request failed with status code 503 Get VM Details for ip: 192.168.x.x Failed Request failed with status code 503 Get Docker Details for ip: 192.168.x.x Failed Request failed with status code 503 Get Dashboard Details for ip: 192.168.x.x Failed with status code: [object Object] Tried adding privileged to the docker. Didn't work Tested I can access the docker.sock remotely ok (from node-red) Bridge network was working great until I did something - any thoughts
  8. weird - no clue why its looking in sys/ what is the full error - what file is pointing to that?
  9. you downloaded 5.10.1 as above? Have you tried the make command? does it fail on missing files? if so goto /usr/src/linux then run `find -name XXXXX` where XXXX is the file that is missing from the make.
  10. Ok so got it working on 6.9.0-rc2 (Huge thanks to @pgbtech for the initial steps helping me solve some issues I had) Rough workflow is: 1. Download Coral gasket and apex sourcefiles 2. Download and extract Linux kernel 5.10.1 (6.9.0-rc2), and copy over Unraid patches/mods 3. Install dependencies and add symlinks 4. make gasket and apex 5. add to drivers and boot config 6. Enjoy I also enabled all of the DevTools plugin as well (make for example is needed) [Please note at time of writing, the symlinks didnt bring all the required files into the right location, and I didnt' know enough about 'WHY' they were separate. I did notice for example `types.h` was different in different locations, so took me some time to work out exactly which files to copy over] cd /root mkdir packages cd packages/ wget https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.10.1.tar.gz mv linux-5.10.1.tar.gz linux-5.10.1.tgz cd /usr/src/ mv linux-5.10.1-Unraid/ linux-5.10.1-Unraid_orig tar zxvf ~/packages/linux-5.10.1.tgz ln -s linux-5.10.1 linux cp -rf linux-5.10.1-Unraid_orig/* linux cp -f linux-5.10.1-Unraid_orig/.config linux ln -sf /usr/src/linux/include/uapi/linux /usr/include/linux ln -sf /usr/src/linux/include/uapi/asm /usr/include/asm ln -sf /usr/src/linux/include/uapi/asm-generic /usr/include/asm-generic cd /root/ wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/d/bison-3.0.4-x86_64-1.txz wget http://slackware.cs.utah.edu/pub/slackware/slackware64-14.2/slackware64/l/ncurses-5.9-x86_64-4.txz installpkg bison-3.0.4-x86_64-1.txz installpkg ncurses-5.9-x86_64-4.txz cd /usr/src/linux make modules_prepare Note at this point the make might fail due to missing files cp /usr/src/linux/arch/x86/include/asm/types.h /usr/include/asm/types.h cp /usr/src/linux/arch/x86/include/asm/posix_types.h /usr/include/asm/posix_types.h cp /usr/src/linux/arch/x86/include/asm/posix_types_64.h /usr/include/asm/posix_types_64.h cp /usr/src/linux/arch/x86/include/generated/uapi/asm/ioctls.h /usr/include/asm/ cp /usr/src/linux/arch/x86/include/generated/uapi/asm/ioctl.h /usr/include/asm/ cp /usr/src/linux/arch/x86/include/generated/uapi/asm/sockios.h /usr/include/asm/ cp /usr/src/linux/arch/x86/include/generated/uapi/asm/socket.h /usr/include/asm/ cp /usr/src/linux/include/linux/compiler_types.h /usr/include/asm/ Now try and make make modules_prepare export CONFIG_STAGING_APEX_DRIVER=m export CONFIG_STAGING_GASKET_FRAMEWORK=m make M=/root/apex/ insmod gasket.ko insmod apex.ko lsmod|grep apex mkdir /boot/config/drivers cp /root/apex/gasket.ko /boot/config/drivers/ cp /root/apex/apex.ko /boot/config/drivers/
  11. little out of my depth but the top of the file in question: `errno.h` #include <uapi/linux/errno.h> there are a bunch of *.h (limits.h, errno.h) that look for `uapi/linux/file.h` Not sure if i'm doing something wrong, but the files are all over the place and thus not found by the make command. So either need editing, moving, or another symlink created I created another symlink ln -s /usr/src/linux/include/uapi /usr/include/uapi But i still get errors with other files not located where they are expected. @DiabloXP did you copy or edit limits.h types.h etc?
  12. Thanks for sharing It seems the makefile is looking for a file uapi/linux/error.h /usr/src/linux/arch/x86/include/uapi only contains `asm` directory are there any other symlinks that you added that may resolve this?
  13. i must be doing something wrong. Running Unraid 6.9.0-rc2 Bison 3.0.4 (as per guide above) Linux kernel (according to 6.9.0-rc2) is 5.10.1 getting an error on make modules_prepare SYNC include/config/auto.conf.cmd HOSTCC scripts/basic/fixdep HOSTCC scripts/kconfig/conf.o In file included from /usr/include/bits/local_lim.h:38, from /usr/include/bits/posix1_lim.h:161, from /usr/include/limits.h:183, from /usr/lib64/gcc/x86_64-slackware-linux/9.2.0/include-fixed/limits.h:194, from /usr/lib64/gcc/x86_64-slackware-linux/9.2.0/include-fixed/syslimits.h:7, from /usr/lib64/gcc/x86_64-slackware-linux/9.2.0/include-fixed/limits.h:34, from scripts/kconfig/conf.c:7: /usr/include/linux/limits.h:5:10: fatal error: uapi/linux/limits.h: No such file or directory 5 | #include <uapi/linux/limits.h> | ^~~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [scripts/Makefile.host:112: scripts/kconfig/conf.o] Error 1 make[1]: *** [Makefile:602: syncconfig] Error 2 Makefile:688: include/config/auto.conf.cmd: No such file or directory make: *** [Makefile:710: include/config/auto.conf.cmd] Error 2 Is this a dependancy thing? I've enabled all the Dev Pack, but not sure what else is needed from the NerdPack? Any thoughts?
  14. Did you use the exact steps or edit for Unraid kernel 5.1.0 as you are on 6.9.x ?
  15. OMFG - no I didn’t - this is gold! Thanks for sharing! I’ll give this a try for 6.9.x