kizer

Moderators
  • Posts

    3742
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by kizer

  1. Alright everybody. Lets keep it some what civilized. Somebody came on here a bit disappointed and vented in their frustration everything that is giving them problems. Yes we all take our beloved software very personal, but lets not make somebody new to the world feel uncomfortable or unwelcome. @tomo Please take a quick breath and start from the top of what your having problems with. Like others have said you seem to be having some unique issues and so far one of them has been resolved by simply swapping to a USB2 drive vs a USB3. Many and I do mean many of us have been using unRAID for years. We constantly help each other and I can say Ive never lost one single file even with swapping out two failed drives and constant drive upgrades and swapout for more space.
  2. Check your Cache Drive. Your settings and well literally everything else lives on the Cache drive so make sure its up and running.
  3. Because my Primary machine is my machine I'm currently running and then I'm transitioning to my Secondary and I will be retiring Athlon. I don't have time/money to throw into this newer machine at the moment so its baby steps. So in the mean time I'm utilizing my second machine for things so I don't hammer the tar out of my primary machine. What am I doing? I'm ripping 1400 movies. lol
  4. A. My Primary which is in my Signature 1. Plex Server 2. Data backup of my network, (essential data backed up offline and to a toaster style nas) 3. I rip lots of Movies and then use a HandBrake Docker to rip on a schedule B. Backup than Faster than Primary Machine - Xeon E3-1225 1. Backup Plex Server 2. Ripper for Movies that isn't on a schedule more or less constant that dumps to Primary and allows primary to keep a low CPU and do other things 3. Soon to be used for Security Footage when I finally decided on system 4. I'm sure more and more eventually.
  5. Awwwweeeee Yeahhhhhhh My favorite FTP, SFTP app. Thank you for doing this.
  6. You can use Unassigned Devices Plugin as well you can use User Scripts plugin and run scripts from it as well along side of Unassigned Devices.
  7. Yep I use it all the time. Just keep in mind like mentioned above. Disk to Disk Share to Share Never mix the two because it can cause issues.
  8. @tucansam Best Cron site I sware http://corntab.com/
  9. You could simply use MC aka Mid Night Commander in command line to move things around.
  10. Thanks. I was trying to insure I don't tinker with the wrong server and this worked out Perfectly for my new machine I just fired up.
  11. I've never seen them on my current system, but when I brought up another machine and installed 6.35 last night I saw the same error. It was kinda odd and made me laugh "Nobody Cared" Lol
  12. @Squid No, the popup when you click on it showed Handbrake like it should, but when you clicked on the download button it presented Folding. Why Blasting the Docker.img fixed it I have no idea. I'm thinking we should probably take this convo to CA lo so we don't drive Djoss and others batty over something that was a fluke or some how my mistake. lol
  13. @Squid No, I know it wasn't his fault. It was CA... Lol Just appeared that way at first, but I knew something was up when I compared two machines and they both showed different results so it was instantly a "Ah-Ha" Moment. I just wanted to follow up with a reply/edit on his topic since that is where I first posted up a comment and didn't want to leave him/somebody else hanging. I just blasted the docker.img and oddly enough magic happened and all is well again. I was just totally perplexed why it was trying to install Folding@Home or something of the sort on his Docker. Lol It just took some backyard mechanic trouble shooting to figure out my problem. Bulding a new machine and wanted to kick the tires some and HandBrake is a good Test seeing I wanted to compare speeds of old machine to new machine.
  14. Not sure why, but when I click on the Apps tab and select HandBrake I get FoldingAtHome when I select your HandBrake Docker. Either I'm going nuts or something else is... Lol This is the URL Community Applicatons is sending me to. 192.168.1.46 is my PC's IP. http://192.168.1.46/AddContainer?xmlTemplate=default:/var/lib/docker/unraid/templates-community-apps/45.xml *******************************Mind Blown********************************** If I try it on my new machine I get FoldingAtHome, but on my Regular Server it pulls up Handbrake. I'm really confused here. lol Took blasting my Docker.img and restoring it to bring back the correct install. Not sure why it wanted to install folding. Lol. I am installing this on a Xeon so maybe it thought it could crank out some numbers or something.
  15. Been using it for a long while and it works great.
  16. I just tried advanced buttons and I'm pulling down 7 Dockers myself without any issues.
  17. Yep very true. Especially since hes very egar to help out its even better.
  18. @giantkingsquid Tis exactly why I let Handbrake do its thing and I move files via scripts I come up with so nothing trips up something else.
  19. Many contributors post in various locations and ask for a move. As long as it gets reported it'll get moved. Lets just keep the chatter about it down some since its a support thread about the docker.
  20. According to your settings you have "Use Cache: set to No" Click the "HELP" button near the top right of your menu. It should give you some insite.
  21. I've automated some ripping of movies from HD to SD so I have 2 Libaries in my Plex server. One for the Big screen and the other for mobile devices. I don't like spaces in my file names so I devised a way to do some renaming prior to running through HandBrake and I wanted to create a folder for each file after ripping simply because I want a folder for each for my personal reasons. Took me a while to figure things out, but here is two little snippets of each. RemoveSpacesFromFile #!/bin/bash cd /SOURCE/ for f in *\ *; do mv "$f" "${f// /.}"; done FolderfromFilename. Create folder from file name. Does not like spaces. Tis why I use above. #!/bin/bash #Create Folder from name and move to final location. File types editable below for FILE in `ls /SOURCE/ | egrep "mkv|mp4"` do DIR=`echo $FILE | rev | cut -f 2- -d '.' | rev` mkdir /DESTINATION/$DIR mv /SOURCE/$FILE /DESTINATION/$DIR done Obviously do some trial and error on some test files just to be sure. 😁