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.

dellorianes

Members
  • Joined

  • Last visited

Everything posted by dellorianes

  1. It has also worked for me. Thank you very much
  2. Hi, I have already updated nextcloud docker and after that ,it gives me the following message: Internal Server Error The server encountered an internal error and was unable to complete your request. Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report. More details can be found in the server log. Someone knows what can I do? Thank you Edit: Looking at MariaDB Log: I am also using other mariadb containers with photoprism in same version than this without issues.
  3. Any idea about this? I have also tryed creating both nordvpn and oscam containers using docker-compose (both in the same .yml file) but it results in the same issue. Only mapping in the .yml file the ports 8889 and 9000; nordvpn is creating correctly (with this both ports) but oscam container is created only with port 8888 (even when I haven't created it as an ENVIRONMENT variable) It seems like the container is primary builded and the image only accept port 8888 in this network mode.
  4. Hi, I am suffering some periodic cuts (each 7 or 8 minutes). An example of the log is here: 2021-08-20 12:23:23.122 capmt: diegonas: normal socket shutdown 2021-08-20 12:23:23.122 capmt: diegonas: Automatic reconnection attempt in 3 seconds 2021-08-20 12:23:26.087 capmt: diegonas: mode 5 connected to 172.18.0.59:9000 (single) 2021-08-20 12:23:26.088 capmt: diegonas: Connected to server 'OSCam v1.20_svn, build r11693 (x86_64-alpine-linux-musl); ' (protocol version 3) 2021-08-20 12:32:24.852 TS: Satelite/10906V/ANTENA 3 HD: H264 @ #163 Continuity counter error (total 1) 2021-08-20 12:32:24.852 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #98 Continuity counter error (total 1) 2021-08-20 12:32:24.852 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #99 Continuity counter error (total 1) 2021-08-20 12:32:24.853 descrambler: cannot decode packets for service "ANTENA 3 HD" 2021-08-20 12:40:25.034 TS: Satelite/10906V/ANTENA 3 HD: H264 @ #163 Continuity counter error (total 261) 2021-08-20 12:40:25.034 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #98 Continuity counter error (total 136) 2021-08-20 12:40:25.034 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #99 Continuity counter error (total 140) 2021-08-20 12:40:25.034 descrambler: cannot decode packets for service "ANTENA 3 HD" 2021-08-20 12:48:18.379 TS: Satelite/10906V/ANTENA 3 HD: H264 @ #163 Continuity counter error (total 489) 2021-08-20 12:48:18.379 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #99 Continuity counter error (total 258) 2021-08-20 12:48:18.379 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #98 Continuity counter error (total 255) 2021-08-20 12:48:18.379 descrambler: cannot decode packets for service "ANTENA 3 HD" 2021-08-20 12:55:25.924 TS: Satelite/10906V/ANTENA 3 HD: H264 @ #163 Continuity counter error (total 872) 2021-08-20 12:55:25.924 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #99 Continuity counter error (total 414) 2021-08-20 12:55:25.924 TS: Satelite/10906V/ANTENA 3 HD: MPEG2AUDIO @ #98 Continuity counter error (total 408) 2021-08-20 12:55:25.924 descrambler: cannot decode packets for service "ANTENA 3 HD" Someone now where the problem is? Thank you
  5. Does Lidarr container show the port :8686 mapped in unraid docker webpage?
  6. Sorry, I am not undestanding, what do you mean with start docker back up? If it means "enable docker", I tryed but everything continues the same. only :8888 showed as mapped.
  7. Hi, I am having a problem at the moment of setting up Oscam container, running through nordvpn app. When I try to define the container ports in Oscam docker, I can not map 9000 (dvbapi port, needed by tvheadend to connect with it). Running Oscam alone (custom network), port 9000 is mapped correctly, but when running through nordvpn it does not appear mapped in unraid docker´s webpage. Only 8888 (webui) appears as mapped 🙂8888/TCP <->:8888). I have also JDownloaded setup to connect through nordvpn with 3 different ports openned with no issues. Any idea?
  8. I am trying to setup a script that gives me a notification, for each action, after several rsync backup commands are executed. The commands I am using are like: # Sincronización de la carpeta Fotos rsync -avh "/mnt/user/Fotos" "/mnt/remotes/192.168.X.X_Backups_Unraid/Backup_UnRaid" if [[ $? -eq 0 ]]; then /usr/local/emhttp/webGui/scripts/notify -i normal -s "Operation complete" -d "Carpeta Fotos Sincronizada" else /usr/local/emhttp/webGui/scripts/notify -i warning -s "Operation failed" -d "Error. Carpeta Fotos no Sincronizada" fi # Sincronización de la carpeta Andrea rsync -avh "/mnt/user/Andrea" "/mnt/remotes/192.168.X.X_Backups_Unraid/Backup_UnRaid" if [[ $? -eq 0 ]]; then /usr/local/emhttp/webGui/scripts/notify -i normal -s "Operation complete" -d "Carpeta Andrea Sincronizada" else /usr/local/emhttp/webGui/scripts/notify -i warning -s "Operation failed" -d "Error. Carpeta Andrea no Sincronizada" fi The problem is that when running the scrip, it only executes the first loop, and then "stays hung" (namely, it does not run none of the other commands nor shows done button). If I execut the command /usr/local/emhttp/webGui/scripts/notify -i normal -s "Operation complete" -d "Carpeta Fotos Sincronizada" from terminal, the message succesfully apears but the action never finish ("#" does not appear and I can not exit from the command) Can someone help me with it? Thank you
  9. Hi, I have a big doubt regarding the using of sub-subdomains. Until now I was using two domains (I did not know that sub-sub domains can be configured): exampleemby and examplenas with duckdns.org I use "exampleemby" seting it up in swag as subdomain and "examplenas" with some subfolders configurations (x.e. nextcloud). Now I want to setup 2 more subdomains (to use with photoprism that only has subdomain template). Searching in the web I saw that it is possible to setp up unly one subdomain and with it configure several sub-subdomains. Am I right? In this case, how I should setup swag container? What I am using now is: Domain Name: duckdns.org Subdomain (s): homeemby,homenas I have also seen in linuxserver swag docker web page that it is not possible to use, at the same time, subdomains a sub-subdomains, but, is it possible to use "homemby" as subdomain and "homeother" as sub-subdomain? I have tryed setups in swag container (empty, wildcard...) but I only can getting it work with above configuration (filling domain and all the subdomains) Thank you
  10. Hi, I am quite nooby in unraid. I have been running tvheadend for 1 month getting it working fine. I have it installed in appdata share folder whitch is addressed in the cache (NVME ssd disk). My doubt is, is it (cache) the best place to run it instead of the array (HDD disk)? When playing, it is continously writting and deleting data so, the ssd TBW life would be reduced quickly. HD Channels have a maximum of 20 mbps of quality so HDD disks would satisfy this requirement. Is it better to move it to a new share folder addressed in the Array (as well as oscam and xteve also)? Thank you

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.