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.

ICDeadPpl

Members
  • Joined

  • Last visited

Everything posted by ICDeadPpl

  1. Yeah, I've been using the scripts to generate Wireguard configs for my PIA account. Works fine.
  2. Is it possible to have a script to check when a Plex session with encoding starts, so that one can stop a mining Docker? In my case it's the trex-miner, which I would like to halt when Plex gets an encoding job. 'nvidia-smi' gives the active process using the GPU, so the script would have to parse the output for Plex.
  3. Maybe I misunderstood. So the drivers running in the WIndows VM support passthrough, then?
  4. They said it is for Linux hosts running Windows VMs: "With virtualization enabled, GeForce customers on a Linux host PC can now enable GeForce GPU passthrough on a virtual Windows guest OS. There are a few GeForce use cases where this functionality is beneficial such as: GeForce customers wanting to run a Linux host and be able to launch a Windows virtual machine (VM) to play games Game developers wanting to test code in both Windows and Linux on one machine"
  5. Does the new 465.89 driver's "GeForce GPU Passthrough for Windows Virtual Machine" functionality make any difference for this plugin? https://nvidia.custhelp.com/app/answers/detail/a_id/5173 https://www.nvidia.com/en-us/geforce/news/outriders-game-ready-driver/
  6. There's a OSX Serial Generator on Github which has a lot of options, I haven't tried it out yet.
  7. You can create a custom script and put it in the docker's '/config/custom-cont-init.d' folder. The script will be executed every time the docker is started/restarted.
  8. Try MESSAGE=`rsync -av --delete --ignore-errors -e` /usr/local/emhttp/webGui/scripts/notify -i normal -s "Test" -d "Test" -m "$MESSAGE"
  9. You could call '/usr/local/emhttp/webGui/scripts/notify' from your script, and have the message include the output of the rsync job. The rsync output could be temporarily stored as a file, piped argument, named pipe or whatever. Run the command '/usr/local/emhttp/webGui/scripts/notify' once without any arguments to see which there are for you to use. You may want to check the notifications in Unradid Web UI "Settings/Notifications settings" so they are set to send email.
  10. Put 'bash' in front of the command. Like 'bash /boot/config/plugins/user.scripts/scripts/backup_onedrive/script'
  11. I have a IBM ServeRAID M1015 flashed with LSI firmware in IT mode, but it doesn't get detected on my motherboard (MSI Z270 Gaming Pro Carbon) with a Core i7 7700K CPU. I have tried every pcie slot on the motherboard, but with no success. I tried with putting the card in my desktop PC (an AMD Ryzen 5900X system) and it works all right there. Is there anything I can do to get it working on the Intel system, or do I have to buy some other motherboard/CPU combo? 'lspci' gives this output, so the card is not detected at all:
  12. I replaced these lines in the '/mnt/cache/appdata/nextcloud/nginx/site-confs/default' file. (Adjust path to your appdata path, if it's different) location = /.well-known/carddav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/caldav { return 301 $scheme://$host:$server_port/remote.php/dav; } location = /.well-known/webfinger { return 301 $scheme://$host:$server_port/public.php?service=webfinger; } location = /.well-known/host-meta { return 301 $scheme://$host:$server_port/public.php?service=host-meta; } location = /.well-known/host-meta.json { return 301 $scheme://$host:$server_port/public.php?service=host-meta-json; } with these lines # Make a regex exception for `/.well-known` so that clients can still # access it despite the existence of the regex rule # `location ~ /(\.|autotest|...)` which would otherwise handle requests # for `/.well-known`. location ^~ /.well-known { # The following 6 rules are borrowed from `.htaccess` location = /.well-known/carddav { return 301 /remote.php/dav/; } location = /.well-known/caldav { return 301 /remote.php/dav/; } # Anything else is dynamically handled by Nextcloud location ^~ /.well-known { return 301 /index.php$uri; } try_files $uri $uri/ =404; } Then I restarted the Nextcloud docker and the error was gone.
  13. Try with opening the Nextcloud console (click on Nextcloud icon on Docker page) and run this command: sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --off
  14. Have you tried to add the (sub)domain name to your hosts file? (On Windows 10 it's located at "C:\Windows\System32\drivers\etc\hosts")
  15. Request: newt It includes 'whiptail', which is great for making interactive scripts with menus, checkboxes, etc.
  16. You can make a folder called "custom-cont-init.d" in the /config folder location and put a script in there. It gets executed during start/restart of the container. This applies to Linuxserver containers only, that I know of. Read more here, under "Custom Scripts".
  17. I had the same problem, didn't get a handshake from either my PC or my Android. I don't remember why, but one day I decided to try another port in the the "local endpoint" and also my router port forwarding setting. It just started to work. I had earlier successfully used the default port, but one day it just stopped working. I went for a long time before I got to change the port, I used my router's OpenVPN instead. Weird.
  18. Is it possible to migrate from linuxserver/papermerge to this version?
  19. In the "Move Array Only Shares" script, the message "All cache-only shares already only existed on the cache drive" is exactly the same as in the "Move Cache Only Shares". Maybe it should say "All array-only shares already only existed on the array"? The same with the message ""All shares set to be cache-only have now had their files previously existing on the array to now be on the cache drive", that should be "All shares set to be array-only have now had their files previously existing on the cache drive to now be on the array"
  20. Oh that I wish that this post got noticed by Limetech:
  21. Also, a "Cancel" or "Close" button the the same pop-up would be nice. Now I have to reload the whole page to cancel the process.
  22. Just a minor request for convenience: When adding a remote share it would be nice to have the text box selected/active in the pop-up, so one wouldn't need to click in every text box to fill in IP, username and password.
  23. I just want to chime in and say that I'm running PIA with WireGuard as per the instructions, and it works just fine. 👍
  24. You can make a folder called "custom-cont-init.d" in the /config folder location and put a script in there. It gets executed during start/restart of the container. This applies to Linuxserver containers only, that I know of. Read more here, under "Custom Scripts".
  25. I also have noticed that the timestamp is 1 hour off. If I create a folder at "16:31:24", Papermerge shows in the logs that it was created "15:31:24". If I connect to the Papermerger Docker ('docker exec -ti papermerge bash') and run 'date', it shows the right time. Also the 'echo $TZ' is showing the correct timezone. It seems like Papermerge is still running with summer time, 1 hour less than it is now. Setting TZ should take DST into account automatically, right? Somehow it doesn't work that way in Papermerge.

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.