Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (โ‹ฎ) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

bmartino1

Members
  • Joined

  • Last visited

Everything posted by bmartino1

  1. bmartino1 replied to KML's topic in Docker Engine
    Everything I have set up and use is official from Immich GitHub and per there documentations... the manufacturer behind Immich wants unraid users to use Compose; that is the official setup. The CA AIO, as you describe, reuses Space Invaders and the official Immich machine learning and Immich server bundled in 1 container... They are offical dockers per immich. see offical documentation https://docs.immich.app/install/unraid/
  2. ... Does no one search or read the forums... Offical Support for Immich: https://forums.unraid.net/topic/146106-immich-docker-self-hosted-google-photos-setup Guides were out a long while... CA: https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Compose: https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html I also have the apps in the CA under my repository bmartino1 https://ca.unraid.net/apps?q=bmartino which use the Space Invaders template for immich via ca...
  3. bmartino1 replied to KML's topic in Docker Engine
    The official way is via a Compose plugin in the CA. steps are here for offical install https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html if you don't want to mess with compose the Immich maintainers' preferred way you can follow this and install and run via CA. https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html postgress is the main items that has been changed. https://github.com/immich-app/base-images/pkgs/container/postgres/versions?filters%5Bversion_type%5D=tagged Redis is no more bitnami was bought out use valkey instead...
  4. all tags from imich for the changeover are listed here: https://github.com/immich-app/base-images/pkgs/container/postgres/versions?filters%5Bversion_type%5D=tagged CA guide install can be found here: https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html
  5. have and its been around for a while... items are in the CA... https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Reddis is gone. Bitnami was bought out, and there redis docker are gone use valkey instead... Ideally, it is recommended to use docekr compose plugin... and run via Docker Compose.. https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html the support page is here: https://forums.unraid.net/topic/146106-immich-docker-self-hosted-google-photos-setup
  6. ... https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html
  7. make sure permission are applied to th4 docker and taht the notepad items are being saved. general steam cmd stuff and mods for the avorion https://aleforge.net/help/how-to-install-mods-on-your-avorion-server/ That file looks correct, but an item option or line spacing may be causing problems. lua is YAML syntax and is space-sensitive. Per the link above on the file make sure the line 15 doesn't have the ","
  8. An update was made to add and fix some additional items to speedtest. including moving to updated Python packages and files. Sadly, it looks like an end of an era for python speedtest-cli From the archived sivel/speedtest-cli Python project. It is an unofficial Python implementation that uses an older Speedtest.net configuration and server-discovery endpoints. Its own documentation warns that Speedtest.net moved to socket-based tests and that results may differ from the official website. The repository was archived on April 30, 2026. https://github.com/sivel/speedtest-cli https://github.com/bmartino1/NetProbe_Python/issues/5 I have reached out to Ookla Speedtest for uses of their binary and have working tested code, hopefully with a new Docker tag soon going over backends. Until I know more if the python speedtest-cli will be maintained, and while the application works, the server list may slowly move to the new Ookla endpoint, which is governed by another EULA. https://www.speedtest.net/about/eula I may be forced to remove speedtest data outright moving forward or given permission to implement a user-accept Ookla EULA to continue offering speedtests with this Mit Netproble_python project. Please see issues #4 and the production release with changes to the web UI and speedtest. By default, I enabled HTTPS, which may change speedtest results via the Python package. https://github.com/bmartino1/NetProbe_Python/issues/4 https://github.com/bmartino1/NetProbe_Python/releases/tag/Production-i4 Licensing might change due to Ookla speedtest.net EULA for perosnla non comercal use, especially with speedtest distribution.
  9. I would recommend using immich first. I will take a look to see if this is comparable. but don't think this can be easily added to unraid the github projects really want to build it and run side scripts. https://bmartino1.weebly.com/immich-on-unraid-ca-docker.html Ente while not production-ready a compose file exists.... https://github.com/ente/ente/blob/main/server/compose.yaml Multiple dockers are need to run ente-io immich is open source and comparable to google photos. https://github.com/immich-app/immich Photoprism is alos a solid second choice alternative, albeit Photoprism doesn't have a free mobile app where Immich does...
  10. type diagnostic and this will make and add a file onthe usb that you can post to the form for the mod JorgeB to inspect... you typed teh comand worng its dhcpcd not dhcp...
  11. The screenshot and pictures appear to be a QEMU VM spice connection / ipmi connection...
  12. Here's some unraid web terminal things to check and double-check... Run these in Unraid terminal: # Show all IPs/interfaces ip -br addr # Show default gateway ip route # Show which gateway the server would use ip route | grep default *Find your main NIC, usually br0, eth0, or bond0. # Replace br0 if your interface is different IFACE=br0 Default should be br0... # Show IP on that interface ip addr show "$IFACE" # Show DHCP lease info if present cat /var/lib/dhcpcd/*.lease 2>/dev/null cat /etc/dhcpcd.duid 2>/dev/null Steps to Release/reacquire DHCP: IFACE=br0This will set the variable for future items targeting the necessary interface. default should be br0... # Drop current DHCP lease dhcpcd -k "$IFACE" # Request a fresh DHCP lease dhcpcd "$IFACE" Verify dhcp data received. # Recheck IP and route ip -br addr ip route Ping gateway: GW=$(ip route | awk '/default/ {print $3; exit}') echo "Gateway is: $GW" ping -c 4 "$GW" Ping the Internet IP and DNS: ping -c 4 1.1.1.1 ping -c 4 google.com Script One-shot full check: IFACE=br0 echo "=== IPs ==="; ip -br addr echo "=== Routes ==="; ip route GW=$(ip route | awk '/default/ {print $3; exit}') echo "=== Gateway: $GW ===" ping -c 4 "$GW" echo "=== Internet IP ===" ping -c 4 1.1.1.1 echo "=== DNS ===" ping -c 4 google.comIf DHCP renew fails, restart networking from the Unraid GUI or use: /etc/rc.d/rc.inet1 restartThen recheck: ip -br addr ip route ping -c 4 "$(ip route | awk '/default/ {print $3; exit}')"
  13. The 169 is a DHCP address, meaning that it was unable to obtain a proper IP address from your router within the set time. When it went searching for IP.
  14. docker extra parm option may be worth a try. --dns 8.8.8.8 https://docs.docker.com/engine/network/#dns-services
  15. intel optanes 16GB ssd is where i go for a nvme interal boot now as ists a quick low strage long lasting althernative for usb access. bought a 10 pack a while back when usinga asrock b250 miners for hive and other. converting them into fedor bazite installs... there quite a few low end ssd that are great for the internal boot option. Was able to upgarde 1 system with out issues. suprsied to see kerneal panics after a update hard shutdown the machine and turned on then no issues... so something to be weary of in some old hardware on 5th gen intel baords potenal kerneal rip Could npt find a define cause at boot after upgrade. ram was good. usb boot... againa hard shutdown and power up no issues... but defint somthing to look for during the upgrade path...
  16. only if you want to, unriad installs a template of your last setting, going to add a container and reselecting the name in the drop down will keep previous edits... I set this up where you can use the tempalte to run other operations as well. user script plugin to call the docker start command. then cron to run 1 a month. Thats more a a personal preference and space question. example cache clearing. I chagne automtic to xyz and run the docker. options explaind in 2nd post of this forum and on github. https://github.com/bmartino1/plex-dbrepair-docker#environment-variables setting automatic to prune will then see the default set 30 days whcih will delete old cache.
  17. then this is not for you. the idea and goal was for this to be used for thoses who need help. idealy you shold run teh ca script maunaly inteh docker this is a side alternative due to to many useing having isseus and neding a quick fix... the docker logs tell you whats happening when it stops the operation is complete check the docker logs and see the secod post of this forum...
  18. for a end user to run this docker and hav eit auto repair the pelx sql database due to coruption. the docker runs does its things and stops. its meant as a stop gap and a quick run this to help some not so tech savy users run teh needed sqlite comands to run the reapirs per plex to fix common database issues.
  19. most likely a issues with the compose file database. have not had issues with the RAM disk plugin. so i can only assume based on the error reported. https://github.com/bmartino1/unraid-docker-templates/blob/main/Guides/Compose/Immich/ImmichReadme.md https://bmartino1.weebly.com/immich-on-unraid-docker-compose-guide.html The database needs a env line for pgdata and mapped to the same mount point due to changes and upgrades... My bet without seeing the compose is you are using the older Bitnami Redis that was removed from the Docker Hub. so the compose is calling a Docker that no longer exists.
  20. yes as explained earlier in post: https://forums.unraid.net/topic/198745-unraid-730-stable-now-available/page/5/#findComment-1624234
  21. Iโ€™m trying to understand the intended upgrade path here. 7.2.7 appears to include security package refreshes that are newer than what is listed in the 7.3.0 release notes. For example, 7.2.7 lists Docker 29.5.1, glibc 2.43, nginx 1.30.1, jq 1.8.1, and the Avahi CVE rebuild, while 7.3.0 lists Docker 29.4.3 and does not appear to list the glibc/nginx/jq/avahi security updates. Is 7.3.0 expected to receive a 7.3.1 update carrying these same 7.2.7 security package bumps? Or are the 7.3.0 binaries already patched in some other way not reflected in the package list? Iโ€™m not asking whether 7.2.7 is a branch-maintenance release... I understand that part. Iโ€™m asking whether a system already on 7.3.0 is currently behind 7.2.7 for the listed CVE-related packages.
  22. https://docs.unraid.net/unraid-os/release-notes/7.3.0/#updated-packages-141 cross-referenced per docs still need to double check on usb... I would not describe 7.2.7 as โ€œtelling you to downgrade from 7.3.โ€ It looks like 7.2.7 is a security/maintenance patch for the 7.2 branch, while 7.3.0 is the newer feature branch with internal boot / TPM licensing / newer kernel / newer ZFS stack. The uncomfortable part: 7.2.7 is newer than 7.3.0 in a few specific security package binaries. So my concern is valid. Cross-reference: 7.2.7 vs 7.3.0Package 7.2.7 7.3.0 Is 7.3 older? aaa_glibc-solibs 2.42 โ†’ 2.43 not listed as updated in 7.3.0 package list Likely yes / not shown updated avahi 0.8-3_SBo_LT โ†’ 20260508_3737842-1_SBo with CVE-2023-38469 through CVE-2023-38473 not listed in 7.3.0 updated packages Likely yes / missing from 7.3.0 list curl 8.19.0 โ†’ 8.20.0 8.19.0 โ†’ 8.20.0 No, same fixed version docker 29.3.1 โ†’ 29.5.1 29.3.1 โ†’ 29.4.3 Yes, 7.3.0 is older glibc 2.42-2_LT โ†’ 2.43 not listed in 7.3.0 updated packages Likely yes / missing from 7.3.0 list gnutls 3.8.12 โ†’ 3.8.13 3.8.12 โ†’ 3.8.13 No, same fixed version jq 1.6 โ†’ 1.8.1 not listed in 7.3.0 updated packages Likely yes / missing from 7.3.0 list libvirt-php 0.5.8-8.3.29 โ†’ 0.5.8-8.3.31 0.5.8-8.3.29 โ†’ 0.5.8-8.4.21 7.3 is different/newer PHP ABI build, not directly older nginx 1.27.2 โ†’ 1.30.1 not listed in 7.3.0 updated packages Likely yes / missing from 7.3.0 list php 8.3.29 โ†’ 8.3.31 8.3.29 โ†’ 8.4.21 No, 7.3 is newer major/minor zfs 2.3.4_6.12.82 โ†’ 2.3.4_6.12.90 2.3.4_6.12.82 โ†’ 2.4.1_6.18.29 No, 7.3 has newer ZFS + newer kernel build Sources: 7.2.7 lists the 11 updated security packages, including Docker 29.5.1, glibc 2.43, nginx 1.30.1, PHP 8.3.31, and ZFS rebuilt for kernel 6.12.90. 7.3.0 lists Docker 29.4.3, curl 8.20.0, GnuTLS 3.8.13, PHP 8.4.21, ZFS 2.4.1_6.18.29, and says โ€œDowngraded packages (0).โ€ Your pasted 7.3 package list matches the official 7.3.0 package section, including curl, docker, gnutls, PHP, and ZFS. The important conclusion7.3.0 does not appear to contain every package refresh that 7.2.7 contains. Specifically, based on the public release notes: 7.3.0 appears behind 7.2.7 on: docker: 7.3.0 has 29.4.3, while 7.2.7 has 29.5.1 nginx: 7.3.0 does not show the 1.30.1 security bump glibc / aaa_glibc-solibs: 7.3.0 does not show the 2.43 bump avahi: 7.3.0 does not show the 20260508 CVE bump jq: 7.3.0 does not show the 1.8.1 CVE bump7.3.0 is not behind on: curl: same 8.20.0 gnutls: same 3.8.13 php: 7.3.0 has 8.4.21, newer than 7.2.7's 8.3.31 zfs: 7.3.0 has 2.4.1 on kernel 6.18.29, newer than 7.2.7's 2.3.4 on kernel 6.12.90 kernel: 7.3.0 has 6.18.29, while 7.2.7 has 6.12.90
  23. due to the recent https://forums.unraid.net/topic/198979-unraid-727-now-available 7.27 update can we get a confirmation that 7.3 has the updated binaries as well? are the same cve updated in 7.3? as repoprted in 7.2??? aaa_glibc-solibs: 2.42 โ†’ 2.43 avahi: 0.8-3_SBo_LT โ†’ 20260508 (CVE-2023-38469, CVE-2023-38470, CVE-2023-38471, CVE-2023-38472, CVE-2023-38473) curl: 8.19.0 โ†’ 8.20.0 (CVE-2026-4873, CVE-2026-5545, CVE-2026-5773, CVE-2026-6253, CVE-2026-6276, CVE-2026-6429, CVE-2026-7009, CVE-2026-7168) docker: 29.3.1 โ†’ 29.5.1 glibc: 2.42 โ†’ 2.43 (CVE-2025-15281, CVE-2026-0861, CVE-2026-0915) gnutls: 3.8.12 โ†’ 3.8.13 (CVE-2026-33846) jq: 1.6 โ†’ 1.8.1 (CVE-2024-53427, CVE-2025-9403) libvirt-php: 0.5.8-8.3.29 โ†’ 0.5.8-8.3.31 nginx: 1.27.2 โ†’ 1.30.1 (CVE-2025-53859, CVE-2026-1642, CVE-2026-27651, CVE-2026-27654, CVE-2026-27784, CVE-2026-28753, CVE-2026-28755, CVE-2026-32647, CVE-2026-40460, CVE-2026-40701, CVE-2026-42934, CVE-2026-42945, CVE-2026-42946) php: 8.3.29 โ†’ 8.3.31 (CVE-2025-14179, CVE-2026-6722, CVE-2026-6735, CVE-2026-7258, CVE-2026-7259, CVE-2026-7261, CVE-2026-7262, CVE-2026-7568) zfs: 2.3.4_6.12.82_Unraid โ†’ 2.3.4_6.12.90_Unraid are you telling us to down grade then move to this for CVEs or is a 7.3.1 soon to be release???...
  24. are the same cve updated in 7.3? aaa_glibc-solibs: 2.42 โ†’ 2.43 avahi: 0.8-3_SBo_LT โ†’ 20260508 (CVE-2023-38469, CVE-2023-38470, CVE-2023-38471, CVE-2023-38472, CVE-2023-38473) curl: 8.19.0 โ†’ 8.20.0 (CVE-2026-4873, CVE-2026-5545, CVE-2026-5773, CVE-2026-6253, CVE-2026-6276, CVE-2026-6429, CVE-2026-7009, CVE-2026-7168) docker: 29.3.1 โ†’ 29.5.1 glibc: 2.42 โ†’ 2.43 (CVE-2025-15281, CVE-2026-0861, CVE-2026-0915) gnutls: 3.8.12 โ†’ 3.8.13 (CVE-2026-33846) jq: 1.6 โ†’ 1.8.1 (CVE-2024-53427, CVE-2025-9403) libvirt-php: 0.5.8-8.3.29 โ†’ 0.5.8-8.3.31 nginx: 1.27.2 โ†’ 1.30.1 (CVE-2025-53859, CVE-2026-1642, CVE-2026-27651, CVE-2026-27654, CVE-2026-27784, CVE-2026-28753, CVE-2026-28755, CVE-2026-32647, CVE-2026-40460, CVE-2026-40701, CVE-2026-42934, CVE-2026-42945, CVE-2026-42946) php: 8.3.29 โ†’ 8.3.31 (CVE-2025-14179, CVE-2026-6722, CVE-2026-6735, CVE-2026-7258, CVE-2026-7259, CVE-2026-7261, CVE-2026-7262, CVE-2026-7568) zfs: 2.3.4_6.12.82_Unraid โ†’ 2.3.4_6.12.90_Unraid are you telling us to down grade then move to this?
  25. Is this for older kernels ? why go this over 7.3 the next reported lts?

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions โ†’ Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.