This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

[Sophos anti-virus for Linux] Can I add excluded files or directories recursively by "**"?

Hi.

I'd like to improve my pc's performance by avoid scanned some directories recursively by Sophos anti-virus.

The manual (https://docs.sophos.com/esg/SAV-Linux/help/en-us/PDF/sav_linux_cg.pdf) doesn't say explicitly that it's possible to add ExcludeFileOnGlob recursively.

Can I exclude directories recursively?



This thread was automatically locked due to age.
Parents
  •  Thank you for your response!

    I tried end of the path "*", but I can't tell this works.

    I'd like to build some software, so I add the root directory like "/work/poky/*",

    builder read and generate files in the directory.

    Top command shows savscand's CPU usage is high (over 100%) during building software.

    So I guessed ExcludeFileOnGlob doesn't works recursively, is this right?

  • Hmm. I have not tried this, but how about you use lsof to monitor that directory while a scan is taking place to see if any files are accessed? The command might look something like this:

    lsof +D -r 1 '/work/poky/'

    lsof = list open files

    +D = recursive

    -r = repeat ever 1 second

Reply
  • Hmm. I have not tried this, but how about you use lsof to monitor that directory while a scan is taking place to see if any files are accessed? The command might look something like this:

    lsof +D -r 1 '/work/poky/'

    lsof = list open files

    +D = recursive

    -r = repeat ever 1 second

Children