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.

Cpt. Chaz

Members
  • Joined

  • Last visited

Everything posted by Cpt. Chaz

  1. I recently had a similar issue, josh will be able to confirm but it looks like the watcher overloaded. Try disabling and restarting.
  2. @Yekul There is also a way to do this manually. disable the "scan on start" option in the general settings, save and submit, then restart the container. then go back to the settings, and point the library path at whatever specific folder you want. go back to the dashboard, and at your discretion, hit the options tab and "rescan library now". this will keep the entire library path from being scanned automatically, and offer a little more control over specific folders to be scanned and transcoded manually, along with any cron schedules you apply.
  3. does the intel gpu top support 11th gen Rocket Lake?
  4. off to the races. thanks!
  5. just found the new AMD top plugin, awesome job! i'd like to test some containers using gpu transcoding (afaik plex doesn't support amd hardware acceleration, right?). what value would we add to the extra perimeters section of the containers to enable an amd gpu? --device=/dev/dri ?
  6. yeah. until now, updating hasn't been a high priority because i wasn't having any issues. it takes my r720 forever and a day to reboot, so i'm usually slow to update. will be updating today.
  7. i'm seeing the same thing on 6.9.0-rc2. running /etc/rc.d/rc.nginx restart only seemed to work after then closing all open browser windows to server gui. also guilty of using chrome, knowing that sometimes chrome and unraid don't play nice. attached logs for anyone digging in on the issue. kal-el-diagnostics-20210309-1053.zip
  8. @Knightwolf have you tried mapping the folder directly to the container in the template settings? adding a path to something like "/usb --> /mnt/remotes/usbstickpath" and then inside the unmanic container, change the watch folder path to "/usb/movies". that would be the next thing i would try if not. also worth noting, if your usb drive is in exFAT format, you'll need to be using Unassigned Devices Plus, in addition to the regular UD plugin
  9. I’d also like to chime in and say something similar, that either on stable or staging branches, I cannot get gpu transcoding to working with intel quick sync either. I’ve added /dev/dri to the extra parameters and enabled in the container settings. I know my gpu transcoding works because I use it for my Plex container (even with Plex off, cannot get Unmanic to use gpu).
  10. I thought that too. it only goes away if i enter the exact url address of the hosting page, including the port number. here's a picture of the page at http://youtransfer.myserver.com. it tells me the base url should be http://youtransfer.myserver.com:443 when i add the port number to the base url address in full, the message goes away. so i guess in practice this would be the fix, but it breaks from the conventional use of any base url in my experience. now i'm wondering if i'm the only one experiencing this
  11. very cool app, thanks for adding it to CA @FlippinTurt. Wondering if you or anyone else is running this behind reverse proxy (swag)? while i can access it outside my network just fine, i get an error on the main UI about the base url. i've tried leaving the base url blank (which is what i usually do for reverse proxy) and it does the same thing. anybody else dealing with this?
  12. I’d have to agree with @Energen. The spaces in the directory path was the first thing that caught my eye. I think it’s time for a revision with a mkdir section too
  13. The native Unraid script creates a symlink in the /usr/local/emhttp/ directory each time it's ran. For the purposes of this script, the symlink is not needed and therefor removed.
  14. Boom, Bob's your uncle. Thank you for this!
  15. looks like you have some incorrect settings in your container. they repopulated when you reinstalled because the container template persists even if you remove the appdata folder (templates can be removed by going to the docker tab -> add container -> select template to delete -> press red x to delete). I think if you'll just fix/change your ports it should solve your issue. Here's pictures of my current working and proxied setup for anyone that might find it helpful. WebUI port can be changed by clicking "advanced view" in the top right of the container settings page.
  16. i use it your way for internal network access, but the other method is needed for reverse proxy, which provides external network access for other users to make requests. edit: thanks for this container btw, very cool!
  17. has anyone gotten intel gpu to work with this?
  18. has anyone gotten the proxy conf working for this? i can't seem to get it working per this example from the github page. i've added the cname into cloudfare and running SWAG from lsio. my reverse proxy is working fine for all my other proxy confs, so i don't think this is a SWAG issue. edit: duh, forgot to put the container network type on the proxynet! 🤦‍♂️
  19. Thanks! using unassigned devices, i mounted a folder from my google drive, and now have daily syncs of my flash's stored on google drive, super handy.
  20. In my previous post found here, i outlined a multi-step process with 2 different scripts and 2 cron jobs for automating the unraid flash zip backup process using the User Scripts Plugin. Thanks to @nitewolfgtr and @sreknob i've refined it down to one simple "fill in the blanks" script. I've also added an optional UI notification. This script backs up a zipped copy of your unraid flash disk to a location of your choice, removes old backups after specified number of days, as well as the optional notification upon completion Due to the changes, i've marked the other OP outdated and now refer to this script. While i have tested (version 6.8.3 only) and currently run this on all 3 of my unraid servers with reasonable confidence, i stress for anyone that decides to try, MANUALLY BACKUP YOUR FLASH DRIVE FIRST BEFORE TRYING. if you are at all nervous or unfamiliar, please don't try this - i don't assume any liability here for data loss. Use at your own risk, this is still a work in progress. Here's the script, with explanation underneath currently for unraid version 6.8.3 AND 6.9.0-rc2 (version 6.9b30 see below): #!/bin/bash #### SECTION 1 ####------------------------------------------------------------------------------------------------------ #dir = WHATEVER FOLDER PATH YOU WANT TO SAVE TO dir="/insert/your/path/here" echo 'Executing native unraid backup script' /usr/local/emhttp/webGui/scripts/flash_backup #### SECTION 2 ####------------------------------------------------------------------------------------------------------ echo 'Remove symlink from emhttp' find /usr/local/emhttp/ -maxdepth 1 -name '*flash-backup-*.zip' -delete sleep 5 #### SECTION 3 ####------------------------------------------------------------------------------------------------------ if [ ! -d "$dir" ] ; then echo "making directory as it does not yet exist" # make the directory as it doesnt exist mkdir -vp "$dir" else echo "As $dir exists continuing." fi #### SECTION 4 ####------------------------------------------------------------------------------------------------------ echo 'Move Flash Zip Backup from Root to Backup Destination' mv /*-flash-backup-*.zip "$dir" sleep 5 #### SECTION 5 ####------------------------------------------------------------------------------------------------------ echo 'Deleting Old Backups' #ENTER NUMERIC VALUE OF DAYS AFTER "-MTIME +" find "$dir"* -mtime +10 -exec rm -rfv {} \; echo 'All Done' #### SECTION 6 ####------------------------------------------------------------------------------------------------------ #UNCOMMENT THE NEXT LINE TO ENABLE GUI NOTIFICATION UPON COMPLETION #/usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Flash Zip Backup" -d "A copy of the YOURTOWERNAME unraid flash disk has been backed up" -i "normal" exit Here's the slightly modified script if you're running unraid version 6.9b30: Copy and paste the appropriate version above into a new blank script in the User Scripts Plugin, then proceed to edit per below. Some final changes on your end to implement the script. I broke the script down into sections for an easier explanation here: Section 1 - you need enter the path to where you want to save your zipped flash copy (local or remote). Section 5 - be sure to enter the number of days you want to keep old flash backups, default is 10 days. Section 6 - optional, to enable notifications, uncomment the bottom line and replace "YOURTOWERNAME" with your actual tower name (this is for notification only) And that's it, all there is to it. Just copy/paste the script into the user scripts plugin, set how often you want it to run, and you're done. If you have any questions or suggestions, let me know. Enjoy. EDIT 1: 12/21/20 - Merged two previous scripts into one script for aforementioned versions EDIT 2: 12/21/20 - Added quotes to $dir in Section 4 that could cause directories with spaces to get lost EDIT 3: 2/5/21 - Step by step instructions found on my youtube channel here Edit 4: 2/8/21 - Inserted new Section 3 with mkdir command to prevent errors if directory does not yet exist, bumped subsequent sections down. No user interaction required - Added quotes to primary directory path to help prevent syntax errors
  21. does anyone have a good site for gpu rom files to use in the vm passthrough? i've got an AMD rx 580 4gb GPU that i tried to passthrough on a new BigSur VM and not having any luck (vm works fine otherwise), wanted to try a different rom file and see if that makes any difference. i previously tried this one from Tech Power Up
  22. thanks for this @sreknob! i've updated the original post to reflect your contributions 🙂

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.