Everything posted by kizer
-
Installed Plugins Status stuck in "checking"
I get this every once in a while. I just hit refresh on my browser a few times and it seems to correct the issue.
-
Syslog notify - create notifications if specific words occur in the logs
I tried to get your 3 entry part to work. Is there a specific placement for the code to work? I'm not seeing it in the output of the script nor in the log file. So I'm guessing its in the wrong place. I just placed it in the very bottom of the code. Lol
-
Unraid OS version 6.11.5 available
Totally understand. I've seen people get really heated because of to slow releases or to many rapid ones. Just wanted to clear the air just a bit. I can't speak for limetech, but when your constantly innovating or trying to come out with little upgrades knowing your users depend on insuring the integrity of our data things can be slowed down a lot. I'll take the dribbling of little updates here and there knowing things are going smoothly vs HUGE changes that could cause problems in my Environment.
-
Unraid OS version 6.11.5 available
Exactly what users asked for. it used to be a small group would do all the testing and it would take months. Everybody asked to be included in the process to speed up releases. Sure some of the changes can be annoying, but at least unraid allows us to report bugs, which you have to admit are addressed pretty quick and roll back.
-
[Plugin] CA Application Auto Update
AMEN!!!! It's yours and I would do like you want no matter what anybody tells you. I often just give in sometimes and take the path of least resistance. I don't want my VPN to update and crash all my stuff so I make sure I check it now and then and let the rest do its thing, but I totally get your doing something a tad different.
-
How to automatically create folders from file names in Unraid
@caynam Your very welcome. Sorry it didn't work the first time. I got a little sloppy on my cutting and pasting and trying to dress it up. Lol
-
Install any OS update that is currently available
Thank you for putting up the howto for it. I just figured when we are nit picking little features/addons like this we have come a long way. ;)
-
How to automatically create folders from file names in Unraid
@caynam Here you go. I messed up. I forgot to re-add the done to complete the loop when I was trying to make the folders generic enough. I should of just left well alone and let you edit/figure it out vs trying to be all slick. lol #!/bin/bash #noParity=true #arrayStarted=true #Remove Spaces-Linux and spaces are no good together cd /mnt/cache/Media/in/ for f in *\ *; do mv "$f" "${f// /.}"; done #Create Folder from name and move to final location. File types editable below for FILE in `ls /mnt/cache/Media/in | egrep "mkv|mp4|avi|vob|iso|MKV|MP4|AVI|VOB|ISO"` do DIR=`echo $FILE | rev | cut -f 2- -d '.' | rev` mkdir /mnt/user/Media/in/$DIR mv /mnt/cache/Media/in/$FILE /mnt/user/Media/in/$DIR done I just tested this in my /mnt/Media/in directory I used Transformers the Movie.mkv which was actually a dummy file I created to make sure I'm not deleting the real thing. It converted the file from Transformers the movie.mkv to Transformers.the.movie.mkv and then put that in a folder named exactly the same minis the .mkv at the end. So Transformer the Movie.mkv to /Transformer.the.Movie/Transformer.the.Movie.mkv It even worked when I did Transformers (2007) (720p).mkv Transformers.(2007.(720p).mkv
-
Install any OS update that is currently available
Currently when you look at the https://unraid.net/download you see many versions simply because LimeTech gives us the ability to downgrade if needed. I constantly see on Reddit and other places people asking if they can upgrade from their current version to a higher version, but they don't want the most up to date for one reason or another. Can the update script be changed to allow for any version that is available from the download webpage?
-
Meet Tower ....
I have 32GB and I barely use half of it well. Just keep in mind with 256GB he has plenty of room to Transcode into Ram and other things
-
Wifi showing up as remote connection in Plex
I'll double check, but last time I looked Guest was disabled. After re-enabling guest it was 192.168.11.* vs 192.168.7.* I disabled Relay in the network settings and its showing up as Local again vs Remote. I don't recall where I read it, but it seemed like a possible fix. I'm also not running required secure connections, which I've heard could trip up some machines. I also re-started 3 phones and an ipad and they are all appearing as local too. I don't know why the relay setting was tripping up my setup, but I'm going to leave it disabled for a bit and see if it fixes the problem I also made sure to add 192.168.7.0/255.255.255.0 in the Lan Network settings. I'm assuming that forces which ever Ip range is in it to be considered local. Currently by disabling relay it seems to be working the way I want it, but I'll have to see what time tells.
-
Wifi showing up as remote connection in Plex
I’m running Plex as a docker in unraid. I guess I’ll describe my setup and hopefully somebody will have an idea of what is going on. Plex on unraid server eero mesh network mostly wired backend. 1 router using wifi back end Lots of Apple devices. Ipads, Iphones and a few Apple Tv’s. I’ve noticed some stuttering during video playback and couldn’t figure out why since I’m playing using direct play. I checked the dashboard and it shows video and audio being transcoded and it indicates remote with a bizarre IP address. 192.168.0.1. My network is 192.168.7.x. I’ve never personally had an issue streaming anything in the house, but my son says every once in a while he will watch a movie and it pauses and then streams again. I checked what he is watching and sure enough it shows up as remote in the dashboard. He’s on wifi and it says remote. Isn’t remote for devices that are outside of the network? All of my devices are connected to the same mesh network including all devices wired. I’m not running any separate networks or customized subnets. all 192.168.7.x Is this a remote relay at work? I should have plenty of bandwidth in the house since everything is connected to a 1GB network.
-
How to automatically create folders from file names in Unraid
This is something I hacked together a while ago. Remove spaces does what it sounds like because the second half errors out with spaces. The second part creates a folder and moves the file into the folder. its been a long time since I created this and used this so I don't recall if it'll continue to move files since its not in a loop. Hopefully this will at least get you started. #!/bin/bash #noParity=true #arrayStarted=true #Remove Spaces from files prior to creating folder cd /location-of-files for f in *\ *; do mv "$f" "${f// /.}"; done #Create Folder from name and move to final location. File types editable below for FILE in `ls /location-of-files | egrep "mkv|mp4|avi|vob|iso|MKV|MP4|AVI|VOB|ISO"` do DIR=`echo $FILE | rev | cut -f 2- -d '.' | rev` mkdir /location-of-files/$DIR mv /location-of-files/$FILE /location-of-files/$DIR
-
Please Check Out our Survey
Done and I skipped the Gift Card. I'd like for somebody else to have a chance to win it.
-
Mover settings per share
Yep, can't be any more "move to the array as soon as possible" than that.
-
Mover settings per share
Easy do like I did. Set up your user share to backup to the array vs SSD. You can't get any more instant than that.
-
Running an Energy Efficient Unraid Server
Nice Job @SpencerJ. Keep in mind everybody he has been working on this for a while and its always been a touchy subject of performance vs economy. Why can't we have a little bit of both? AM I right? With my Current build I'm idling at 36watts and keep in mind I'm using the UPS readings from the dashboard. Here are a few things I use. I've always been a fan of oversized coolers and big slow spinning 120mm fans vs the pancake style. Much Quieter, moves more CFM and has to be way more energy efficient. Also I like the PSU with the fans that never seem to come on unless the PSU starts to warm up. I always recommend as much medal on my case as possible vs plastic because medal transfers heat way more efficiently than plastic. I also use the Dynamix Fan Plugin so my Cage fans are always off and only my exhaust fan is pulling in air unless the drives spool up and then the cage fans come on. I have my Parity drive set to spin down after 30min and my drives at 45min. Your times my vary, but I figure I read way more than I write on a daily basis.
-
Specific Mover Behaviour
It is my understanding that the mover copies first then removes files. Prior to copying and moving it takes an inventory of files first before it moves.
-
Unraid OS version 6.11.1 available
Any chances of you jus slapping some more Ram in your machine? You would benefit from it later as releases come out and give your machine a little more headroom to breathe.
-
Removing unused dockers and now Plex is orphaned and can't restart
Did you have any strange symbols in the share name? This is from the Help drop down: The share name can be up to 40 characters, and is case-sensitive with these restrictions: - cannot contain a double-quote character (") or the following characters: / \ * < > | - cannot be one of the reserved share names: flash, cache, cache2, .., disk1, disk2, .. We highly recommend to make your life easier and avoid special characters.
-
Delete /boot/previous?
You can always go back a couple of releases if you really need to. https://unraid.net/download Thats a big if you ever need to.
-
Quick question to the guys who know
Lol, Nice Job! What honestly stresses me out is when my phone says it has an update and I click update and it reboots a few times and appears to take forever to come back on. At least with unraid you can go into the USB and look for the previous folder and do a quick restore back to an older version if all else fails. Make sure you install the Dynamix File Manager Plugin. Its pretty slick.
-
Will Limetech ever fix the persistent cache writes?
Exactly. I was running XFS switched to BTFFS and tried this too. Seemed to help some, but then I messed up my second drive in the pool tinkering around and switched back to single XFS. Switching back to single XFS seems to reduce the writes a lot. From my experience its been the docker container 25GB file and its internal logs that seems to be doing most of all the writes. I think anything limetech does will be more or less be a hack a fix than a true solution, but only time will tell.
-
Will Limetech ever fix the persistent cache writes?
I've tried this with my Drive formatted to XFS. Seems to help alot .. https://forums.unraid.net/bug-reports/stable-releases/683-unnecessary-overwriting-of-json-files-in-dockerimg-every-5-seconds-r1079/?tab=comments#comment-15472
-
Automatically add links to specific words like "Diagnostics"
Thank you sir.