morbidpete

Members
  • Posts

    142
  • Joined

  • Last visited

Everything posted by morbidpete

  1. Any word on unraid becoming compatible with the new github update? Just lost my plex docker (linixserver) installed the lime tech one (direct replacement, no issues or rebuild. Thank god for that) but it doesn't auto update like the Linux server one did and doesn't do plex pass :-( I'm slowly loosing dockers :'(
  2. I have a backup of the drive before i wiped it. I have the copy of the diagnostics zip if you would want it. I'm going to look at it myself because this has been picking at me all day :-P Also going to spin this up in a VM just to mess around.
  3. unable to contact it in anyway, Just sits a CPULOAD. Backed up and wiped the thumb drive. Clean copy of the latest beta and it works. Thinking something happened to my config. Going to rebuild. Only had a few shares, No VM's or dockers. So not a big deal. restored old config folder. Wouldn't boot. So wasn't the drive or the OS, definitely something in that folder. Unfortunately I can't experiment as we need to work and need access to the drives. Appreciate the quick response regardless!
  4. unable to contact it in anyway, Just sits a CPULOAD. Backed up and wiped the thumb drive. Clean copy of the latest beta and it works. Thinking something happened to my config. Going to rebuild. Only had a few shares, No VM's or dockers. So not a big deal.
  5. I tried searching. No luck ( its a generic term) came into work this AM to find that the display showed "CPULOAD STARTED" and box unresponsive to pings and even command line on box. Restarted same issue rolled back to previous version, same issue. No idea what this can be as I cant access anything to troubleshoot log from thumbdrive was running the latest Beta at work. same at home. Home has no issues. no dockers, addons or plugins added since this happened. system has been solid and unchanged for month's now. http://pastebin.com/YT8qnpEg
  6. Which is why I managed to test it, and won't be able to again for a while. Another thought is that you may be using the --cpuset-cpus the old style way by putting it in the same entry as the repository, instead of within the extra parameters section on the template. Now I feel foolish. I used to put it in the extra parameters, but read a thread with a newer date so thought it changed. I'll put them back in extra parameters. Sorry for wasting everyone's time ?
  7. I'm pretty sure I do not have any spaces. cadvisor shows the proper dockers having the cores I set so it must be typed correctly. I was going to verify but the intake GUI stopped responding ding. To many users using Plex right now to reboot for GUI access. I'll verify tomorrow. Also it only happens when docker manager shows "update available"
  8. unRAID OS Version: 6.2.0-beta21 Description: When using the --cpuset -cpus=x I can not upgrade dockers via the gui How to reproduce: set the --cpuset -cpus=x in the repository field on any docker with a pending update. Try to update docker. 0bytes downloaded and docker not updated Expected results: docker updated from latest repository Actual results: 0bytes downloaded and docker showing update available Other information: remove cpu pin, update, then add pin back and all is well
  9. Create a defect report. Shouldn't have to do that Sent from my LG-D852 using Tapatalk Where would I do that? NVM< Found the area and guidelines
  10. removing the cpu pin, updating the docker then putting them back, a bit tedious
  11. Update available determination isn't perfect on unRaid just yet. But, the cpuset parameter may be messing up the update for some reason. Try removing the extra parameter temporarily right now, and if nothing changes, then I wouldn't worry excessively about it. That was it, Great idea. Stupid on my part. Thank you
  12. Dockers show an update is ready. I stop and update them, They download 0 bytes, then run. Still showing update. Is it a repo problem or an issue with my unraid?
  13. Just a heads up. Had the same issue. This thread solved it for me. thanks!
  14. :'( I'll spin up a small cent vm or something and see if i can get the latest git version running in that.
  15. Anyway to get the latest paperwork pull in this? They fixed the share function and its the last thing i need working so I can implement this at my Job.
  16. FYI, I ended up adding a line to mount the share directly in fstab using cfis. We'll see if performance is better or worse. Performance using unraids built in was great. just the reported space was a huge issue
  17. Hi All, I have an Ubuntu VM. Server 14.04.3. had everything working well until software complained that my share was full. This is odd considering I have 4TB free. Checked the directory and shows only 48GB in size. Installed the Ubuntu desktop on the server to mess around a bit more. No matter how I mount or use the VM share mount option. Only shows as 48GB. tried passing user/user0. turned cache on and off. no luck. any ideas? [/img]
  18. I know when apps run and their background service runs as a "Service" as you mentioned have issues with access user mapped drives. but that doesn't seem like the case here since it can access other shared as you mentioned. for shits and giggles, try this tutorial on how to mount a drive as a service using a bat file and task scheduler. if that doesn't work im clueless. http://www.tipsdotcom.com/crashplan-network-drive.html
  19. OK, Finally got all this working the way I like. I ended up leaving that long initial script provided in the first page. I was able to write up a very simple script to do what I wanted. I'm sure this could be cleaner maybe. But it works without issues and I'm happy. #!/bin/bash cd /mnt/disks/dji32/DCIM/100MEDIA/ for v in *.MP4 do mod_datev=$(date +"%m%d%Y%H%M") mv "$v" /mnt/user/Drone/"$mod_datev$v" done cd /mnt/disks/dji32/DCIM/100MEDIA/ for p in *.JPG do mod_datep=$(date +"%m%d%Y%H%M") mv "$p" /mnt/user/Drone/"$mod_datep$p" done curl http://192.168.1.2:32400/library/sections/9/refresh?deep=0 curl http://192.168.1.2:32400/library/sections/7/refresh?deep=0 it pretty much CD's to the mounted card, Copies the files to the directory it runs out of (/mnt/user/Drone) with the date and time as the filename. then uses Curl to update my plex. Not to figure out the sendmail command. Have it working without issue in windows, but the arguments dont seem to translate well to the Linux version.
  20. is blue iris running as admin, or as an account that has access to the drive? open notepad as normal and try to save a test text file to the share, then open notepad as admin and see if you can save another text file in the share. I had this issue with CrashPlan some moons ago. Programs that ran as admin did not have access to the mapped shares. Try not pointing iris to the mapped drive and just typing in the smb/ip address and path directly
  21. Stop VM Edit VM On the bottom in USB DEVICES, check your drive Start VM Profit!
  22. Now I cannot mount the disk I a greyed out mount button and a greyed out format button (see attached). Any thoughts on getting this disk formatted for a share for a Windows 10 VM? Again I am new so be gentle (or at least thorough). Let me know if I can provide anything to help troubleshoot or find a solution! Many thanks in advance! Mike Why not just pass the disk into the VM then share it from the VM if you need network access
  23. Just found the Common Script setting. Is that executed before or after the mount? I guess i could experiment and find out. I could have one script int he mount settings and the other in the common and this would solve all my problems i think