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.

Energen

Members
  • Joined

  • Last visited

Everything posted by Energen

  1. Don't think so..... the floppy driver thing is for a storage driver, i.e. hard drive. The fact that it's installing means something else is the problem.. as far as what that problem is.... can't say.
  2. What are your VM settings? I just installed an XP VM without anything special and it installed fine. No issues. IDE for all controllers.
  3. I don't have this file and it appears that every link to this file on the internet is dead... unless someone here still has this file and can mirror it, you may need to find a new way of installing with something more recent/updated.
  4. Not sure when your problem started but as of right now duckdns.org is down so that probably has something to do with it. My log is filled with the same message. I'd wait for the server to be up and then check. I've never had an issue with the default times.
  5. Don't know if this is a starting point but you'd have to 1) implement your button into the GUI initially for testing, and 2) make it so that it is recreated upon reboot... then you may be able to get some ideas here https://stackoverflow.com/questions/44443164/execute-a-shell-script-from-html
  6. I would start by removing the /series/ folder and only use the /downloads/ folder. Even if you are somehow downloading or moving tv (only) into the series folder it's creating a path of failure and sonarr doesn't care if your files are in /downloads or /downloads/series/, it will find them either way. All of your Syncthing downloads should (and most likely are) going into the same /downloads folder so don't create any extra work by using additional subfolders. If you somehow have your seedbox separating tv shows into a series folder -- stop that. Just making things messy and more complicated. Try that and see if it helps.
  7. I was having this problem as well............. it SEEMS to be down to the startup order of the docker containers. My startup order is now influxdb -> telegraf -> tautulli -> varken -> grafana Previously varken was somewhere closer to influxdb and was always not-running. Changed the order and haven't had a problem since. * if this is accurate then it's a good tip for a guide to setting this up!
  8. I finally took the time to set this up and it's pretty cool... I saw it when it was first announced but never had time to figure out what to do with it. I will say that I thought I had Plex stats working, and then they weren't.. so did I ever have them working? IDK... so I was thinking to myself "hmm".. and started looking around... on page 24, I think, of this thread I saw to create a varken data source for UUD which I guess I never created... or wasn't saved? Not sure... Someone, really, absolutely, needs to create a new, updated, step by step installation guide for every single aspect of this and get it posted in the first thread... There are way too many steps involved and too many pages to go through to find every little detail of this. Very neat addon but very detailed to install, but not worth scouring 32+ pages of information.. Also, don't know how useful it would be to add or display, but since this is the "ultimate" dashboard, is there a way to integrate stats from / like this:
  9. That's clean AF, very nice. I don't have power near my closet or I would totally think about redoing it...
  10. So I would suggest to you that https security is rather important for you since you are on a university LAN... ANYONE on the network could intercept your traffic and potentially do whatever they wanted with it.
  11. As jonathanm said you can't use an internal network ip (192.168.1.10) as a dns forward ip.. every single person on the internet, in the entire world, could have their own devices on 192.168.1.10 .. so how would it forward to you? Set your router's DHCP settings to have Unraid use a static ip (set the mac address of your Unraid motherboard/network card) to 192.168.10.1 or whatever you want. Then use DuckDNS to forward your domain to your PUBLIC IP address -- which always routes to you. Access to services is directed by your router's open ports and/or reverse proxy...
  12. What happens when you sign into https://app.plex.tv/desktop ?
  13. Does your backup directory (/mnt/user/NCloud/Mihle/files/Filer/Backup/NAS Flash Backup/) already exist? If not, it needs to be created before the script runs. I learned this making my Plex script that you cannot move a file to a destination that does not exist. Also, I'm not clear on whether it's actually needed or not, but it's good practice to enclose your backup path in quotes since it has spaces in the path: dir="/mnt/user/NCloud/Mihle/files/Filer/Backup/NAS Flash Backup/" The error message on the mv command indicates that one or both of these are the problem. It's probably also why the rm is failing as well. During the creation of my Plex script I had this rm command mis-formed and had the same errors as you, and the GUI was totally unresponsive due to it.. had to pull the power plug to reset the server since I couldn't restart it any other way... was not a good time! So I'd change your section 1 to this and see if it helps: #dir = WHATEVER FOLDER PATH YOU WANT TO SAVE TO dir="/mnt/user/NCloud/Mihle/files/Filer/Backup/NAS Flash Backup/" mkdir -p "$dir" The mkdir -p just ensures that if the path does not exist that it is created.
  14. So you essentially need the databases folder for watched status, etc. You can use a script like this to back up on a schedule. https://forums.unraid.net/topic/102290-user-script-for-important-plex-data-backup-v3/?tab=comments#comment-943802
  15. No. You can sign into your plex server from plex.tv at any time from anywhere, doesn't matter what ports it's on or any subdomain that it might be connected to .. so you're only making more work for yourself. But you can continue to set it up, doesn't really matter. It's obviously a port issue if you're not getting outside access, and/or a forwarding issue for the domain. Do you have 32400 open? I believe that's required no matter what.
  16. Why are you trying to run in through a reverse proxy? Just sign into plex.tv and your server is available world wide.
  17. I completely agree.. they (radarr/sonarr) are terrible. Not as easy to use either. You CAN go back by reverting to an older build, but like Urban said.. the new ones are going to be the ones that are most worked on. It's kind of adapt or get left behind, but if you want to you can change your repository to linuxserver/radarr:v0.2.0.1504-ls37 and pull it down again.. that was the last version I had before they changed the GUI. The databases converted for the new UI version as well so if you go back you'll lose any changes that you've had since going to the new UI.
  18. Originally I used a simple 2 line script to only back up the Plex databases since I excluded Plex from CA Appdata Backup because I didn't want nightly backups with 20GB+ of Plex metadata. That idea sparked @Cpt. Chaz to further modify that basic idea with some improvements and a great @SpaceInvaderOne-type video on YouTube showing the implementation and use of his script. His version of the script gave me some ideas on improving my original version, which led to this new version. A lot to follow, right? The main difference between Cpt. Chaz's script and mine is that I use a tar archive for backup and he copies the files, which can easily be changed to using tar if you wanted to. I also back up the Plug-ins preferences directory which includes settings for scrapers, plugins, etc. Then I took it a step further (for fun, and learning) to not only back up the important Plex data but to also have the ability to create periodic full Plex appdata backups (like you'd ultimately get with CA Appdata Backup). I run CA Appdata Backup nightly but I do not need or want full Plex backups every single night, so this is my solution. If you run the script manually you'll end up seeing something like this... I just created a fresh set of backups. Find the script here and you can contribute to any changes / fixes. https://github.com/rcodehub/unraid-plex-script Enjoy!
  19. Change your docker from the latest branch to the develop brach, should pull down 0.8 Repository: linuxserver/lidarr:devlop
  20. You may want to read through this topic, seems that people have it working on the latest beta Unraid. https://forums.unraid.net/topic/92910-is-intel-gen10-supported/
  21. Didn't follow the whole conversation for what you're trying to do but you can run your own user script that backs up the flash drive to a sync folder on the share for nextcloud.
  22. Did you, in fact, create the maps to the folders? And then put the data into those folders? I have never migrated from Windows but this is where I would start troubleshooting.. Your docker config should basically look something like this: I don't remember if these paths had to be created manually or if they were included in the template.. It is entirely possible that a direct migration is not possible if the database is filled with Windows paths and now it's on Unraid... in that scenario the best you might hope for is that when you create a new library from Unraid that the existing metadata, etc, is used .. This is another one that might be better addressed to the Stash devs/community. Off topic, should we all share our 'media' with each other? hah.
  23. At the moment the only folder I back up for Plex is /mnt/user/appdata/PlexMediaServer/Library/Application Support/Plex Media Server/Plug-in Support/Databases" That directory contains your library data and watch state / history.. basically the important stuff. Metadata can be recreated. I use a user script for this and not the Appdata Backup plugin, but you may be able to simplify things by only excluding the metadata related folders
  24. Wondering if this setting might have anything to do with it and how yours is configured? Under Settings - Docker advanced settings Host access to custom networks: Disabled/Enabled Allows direct communication between the host and containers using a custom (macvlan) network. By default this is prohibited.
  25. Run it from the user scripts plugin page (from settings)

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.