Jump to content

Squid

Community Developer
  • Posts

    28,770
  • Joined

  • Last visited

  • Days Won

    314

Everything posted by Squid

  1. And surprisingly, you didn't delete it in the process 😜
  2. Lol yeah, the older I get the more I realize that time is sometimes too precious to spend an hour to find out why something is not working right, and prefer to just fix it and move onto something more interesting Sent via tapatalk because my boss won't let me sit in front of the computer all day long and it's beyond his comprehension that the only thing stopping me from putting a bullet in my head to get out of the lame ass job is the unraid forums
  3. Usually, that means that while the app was stopped, you've added another and it is using the same port(s) as dupeGuru. Easy way to see what the error actually is is to edit the template, make a change, revert the change, then hit apply. The error will be in the docker run command.
  4. https://forums.unraid.net/topic/80204-write-cache-disabled-on-disk-1/?tab=comments#comment-745016 replace /dev/sdk with the appropriate identifier as listed on the Main tab
  5. https://forums.unraid.net/topic/57181-real-docker-faq/#comment-564345
  6. With all the No such file or directory errors, you should post your docker run command
  7. Honestly, I don't see how you'd figure that. Someone posted that LT seems to be ignoring the issue, so a bunch of us replied stating that they are. The big problem as far as I can see (I do not speak for limetech), is that the issue affects a minority of users for some reason. And that makes it very difficult to determine what the underlying cause is if you cannot replicate the problem.
  8. Oops. I had a positive on a txt file, so never thought to re-run after fixing it up. I've updated the script above
  9. Updated to include the infected file in the notification #!/usr/bin/php <? exec('/usr/local/emhttp/plugins/dynamix/scripts/notify -e "Antivirus Scan" -s "Antivirus Scan Started" -d "Antivirus Scan Started" -i "normal"'); exec('docker start ClamAV'); for ( ;; ) { $status = trim(exec("docker ps | grep ClamAV")); if ( ! $status ) break; sleep(60); } exec("docker logs ClamAV 2>/dev/null",$logs); foreach ($logs as $line) { $virus = explode(" ",$line); if (trim(end($virus)) == "FOUND" ) { $infected .= "$line\n"; } } if ( ! $infected ) $infected = "No infections found\n"; exec('/usr/local/emhttp/plugins/dynamix/scripts/notify -e "Antivirus Scan" -s "Antivirus Scan Finished" -d '.escapeshellarg($infected).' -i "normal"'); ?> script
  10. Probably best to post in general support Sent via telekinesis
  11. There would be more info within Plex's log's (Troubleshooting, download logs) for whomever uses Plex (not myself) to peruse
  12. You would make another instance of the container. Each instance scans whatever is specified
  13. To schedule scans, Disable autostart on the app from the docker tab (otherwise it will do a scan everytime you start the server) - up to you. Run this as a user script on a schedule which you choose. Will send a start / stop notification with the # of infected files. You'll have to look at the logs to determine which file(s) are infected #!/usr/bin/php <? exec('/usr/local/emhttp/plugins/dynamix/scripts/notify -e "Antivirus Scan" -s "Antivirus Scan Started" -d "Antivirus Scan Started" -i "normal"'); exec('docker start ClamAV'); for ( ;; ) { $status = trim(exec("docker ps | grep ClamAV")); if ( ! $status ) break; sleep(600); } $infected = system("docker logs ClamAV | grep -i 'Infected'"); exec('/usr/local/emhttp/plugins/dynamix/scripts/notify -e "Antivirus Scan" -s "Antivirus Scan Finished" -d '.escapeshellarg($infected).' -i "normal"'); ?> script
  14. Those are installs that you did from the CLI and didn't name
  15. Template works for me. You don't need to issue the cli command. Just start it from the docker tab. When its finished the container will stop and you can look at the logs
  16. Post the docker run commands for all 3 https://forums.unraid.net/topic/57181-real-docker-faq/#comment-564345
  17. There is a patched version of the script buried within the post unraid-tunables-tester.sh
  18. Linux is case sensitive. You've got mapped and Deluge is putting stuff in /Downloads, but radarr has mapped /downloads. Different folders. Change the container path on one or the other to match
  19. It saves as many backups as you have set it to save in its settings
  20. Look at the status before and after applying them. Any that stay mitigated are being handled via microcode Sent via telekinesis
×
×
  • Create New...