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. Is it just me, or are the Docker Hub and Github links kind of wonky? Check the URLs when hovering your mouse over the links. The "Docker Hub: https://hub.docker.com/r/linuxserver/booksonic-air/" link points to "https://hub.docker.com/r/linuxserver/bookstack/" and "Github: https://github.com/linuxserver/docker-booksonic-air" points to both " https://github.com/linuxserver/docker-bookstack" and " https://hub.docker.com/r/linuxserver/bookstack/"
  2. Request: Barrier, for sharing keyboard and mouse between Linux, Mac and Windows. https://slackbuilds.org/repository/14.2/network/barrier/
  3. Well, when I searched for the string "add_header Strict-Transport-Security", I found it in these files: letsencrypt/nginx/ssl.conf nextcloud/nginx/site-confs/default I have commented it out in the "nextcloud/nginx/site-confs/default" file.
  4. I think Nginx behaves like this if the same directive is enabled in two places at the same time, like in the Letsencrypt and Nextcloud containers. Comment out the other one, and check after restarting the dockers.
  5. Added How come the byobu version is v2.82 from 2010? The latest released version is v5.133 from 17 Feb 2020.
  6. I have an Asus RT-AX88U, and would also like to know how to setup the router for PXE booting.
  7. I added error message for missing directory. Thanks for the input!
  8. No need to run two instances, one instance works just fine with multiple databases.
  9. Maybe push a mock update to the v-version with changelog only requesting users to uninstall & re-install the plugin, so that the new versioning format can take over.
  10. If author removed the "v" in the version number, wouldn't uninstalling the plugin and then installing it make it see new versions without the "v"?
  11. Try to set the backup share to "Prefer". From the help description: "Prefer indicates that all new files and subdirectories should be written to the Cache disk/pool, provided enough free space exists on the Cache disk/pool. If there is insufficient space on the Cache disk/pool, then new files and directories are created on the array. When the mover is invoked, files and subdirectories are transferred off the array and onto the Cache disk/pool."
  12. If you want, you can try my script I've made exactly for this purpose. https://github.com/ICDeadPpl/UnraidScripts/blob/master/backup-appdata-usb-vm.sh It backs up the folders in your appdata location separately. It also backs up the USB flash drive and the libvirt.img file. I have it running on a schedule on my Unraid.
  13. Request: zstd compression tool. Github page: https://github.com/facebook/zstd Slackbuild page: https://slackbuilds.org/repository/14.2/system/zstd/ Pre-built package: https://slackware.pkgs.org/14.2/slackonly-x86_64/zstd-1.4.4-x86_64-1_slonly.txz.html
  14. Ah, that overlayfs is something I have for my "/root" directory. So I can disregard that error then. I've changed my libvirt.img to 1GB, thanks for the heads up!
  15. I added an SSD cache drive, and when the trim schedule runs it gives the same error as the OP. When I run the command manually, I get: root@Tower$ /sbin/fstrim -a -v /etc/libvirt: 50 GiB (53685309440 bytes) trimmed on /dev/loop4 /var/lib/docker: 30.6 GiB (32834031616 bytes) trimmed on /dev/loop3 /mnt/cache: 896 GiB (962065899520 bytes) trimmed on /dev/mapper/sdi1 fstrim: /tmp/overlay: FITRIM ioctl failed: Input/output error Does the "trimmed on /dev/X" part mean that the trim worked, and something after the trim didn't? I've attached output of the "hdparm -I /dev/sdi" command. I've changed the cable too, but it didn't make a difference. hdparm.txt
  16. Is there a way to reset the "Custom color" for the Tray Allocations page? Maybe add a "Default" option in the custom color drop down? So that if I've assigned my own colors on that page and later on want to handle the color assignments from the Configuration page?
  17. Could we have 'fping' added? https://github.com/schweikert/fping/releases
  18. I'd try with changing the "php occ" part of each command to "sudo -u abc php7 /config/www/nextcloud/occ". That is unless you've changed your working directory to "/config/www/nextcloud/" with the command "cd /config/www/nextcloud/". Then you could use use "sudo -u abc php7 occ".
  19. Is there a way to include the "ngx_headers_more" module in this and the Nextcloud docker?
  20. How can I get the "docker-shell" command to work? Is it a script? Mind telling where I can find it? Now I get an error when I try the command: root@Tower$ docker-shell -bash: docker-shell: command not found
  21. When I disable Docker from Settings - Docker (Enable Docker = No), the status line at the bottom shows "Starting services" until the Docker containers are stopped.
  22. You have to edit the XML and change the network adapter type from 'vmxnet3' to 'e1000-82545em'. It should look like this: <interface type='bridge'> <mac address='53:44:00:57:30:d4'/> <source bridge='br0'/> <model type='e1000-82545em'/> </interface> Use 'vmxnet3' for performance or 'e1000-82545em' for compatibility with Apple services.
  23. Are "peer-subnet" and "peer-mask" referring to the IP subnet and mask that Unraid is using, 192.168.1.0 and 255.255.255.0 in my case? (My Unraid has 192.168.1.15).
  24. Does anyone have a 'clean' unedited sshd_config file to share? Mine got messed up (by the ssh plugin). I uninstalled it and am going to go with the tips provided in this thread.
  25. You should edit the template to have the "<Volume type=“appdata”>", so that the volume mapping respects the user's choice of location for appdata: So this: <Data> <Volume> <HostDir>/mnt/cache/appdata/ferdi-server/recipes</HostDir> <ContainerDir>/usr/src/app/recipes</ContainerDir> <Mode>rw</Mode> </Volume> <Volume> <HostDir>/mnt/cache/appdata/ferdi-server</HostDir> <ContainerDir>/config</ContainerDir> <Mode>rw</Mode> </Volume> <Volume> <HostDir>/mnt/cache/appdata/ferdi-server/database</HostDir> <ContainerDir>/usr/src/app/database</ContainerDir> <Mode>rw</Mode> </Volume> <Data> would loook like this: <Data> <Volume type=“appdata”> <HostDir>/mnt/cache/appdata/ferdi-server/recipes</HostDir> <ContainerDir>/usr/src/app/recipes</ContainerDir> <Mode>rw</Mode> </Volume> <Volume type=“appdata”> <HostDir>/mnt/cache/appdata/ferdi-server</HostDir> <ContainerDir>/config</ContainerDir> <Mode>rw</Mode> </Volume> <Volume type=“appdata”> <HostDir>/mnt/cache/appdata/ferdi-server/database</HostDir> <ContainerDir>/usr/src/app/database</ContainerDir> <Mode>rw</Mode> </Volume> <Data>

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.