pokerchip

Members
  • Posts

    8
  • Joined

Everything posted by pokerchip

  1. Check out Photoprism or Chevereto. https://github.com/Chevereto/Chevereto-Free https://github.com/photoprism/photoprism Which type of record are you creating? If you already have DDNS setup, create a CNAME record that points to your DDNS address. https://www.godaddy.com/help/add-a-cname-record-19236
  2. That’s the hope. Considering this is a daily database, one day sounds about right.
  3. HTTP status code 429 represents too many requests. Database server may be rate limiting your public IP.
  4. You are right. I get the same error too if I try to scan files larger than 4gb. Hence why I linked the source code of LibClamAV. I think there is a bug where it tries to read file descriptor, but in the process it also tries to allocate memory leading to fmap errors due to hitting 4000M limit. This is just based on a quick read through of their c header files, but I haven’t coded c for years, so I might be completely wrong. Also, Cisco doesn’t seem to respond to “issues” on github. If anyone else has insights, please share. I am curious how @Squid utilizes this.
  5. Yep, space delimited. Your ss looks good to me. (Since you moved it to post arguments)
  6. No, the default for clamscan is 25mb. So if you want clamscan to scan your files that are smaller than 4000M, then you want to set the config to what I said. Also, clamscan has a hard limit of 4000M. If you want a workaround, you will need to chunk your files before clamscan reads them.
  7. You would configure this in the post arguments section of advanced settings of ClamAV. Check options here: https://www.clamav.net/documents/scanning#clamscan If you want more details: https://linux.die.net/man/1/clamscan
  8. @wgstarks Are those files big? I get an error message like that (with debug mode) when I try to scan files that are bigger than the default file size limit (25mb). For my error message, which makes sense: https://github.com/Cisco-Talos/clamav-devel/blob/e4e3149368d2feab1363f17e27d0271c932ff97c/libclamav/fmap.c#L524 Did you already set max file & scan size limit for clamscan to 4000M? --max-filesize=#n - files larger than this will be skipped and assumed clean --max-scansize=#n - the maximum amount of data to scan for each container file