POSIX environments provide at least two ways of accessing files. There’s the standard system calls open(), read(), write(), and friends, but there’s also the option of using mmap() to...
  • May 15, 2022
  • 0 Comments
I found this piece of code in /etc/cron.daily/apf #!/bin/bash /etc/apf/apf -f >> /dev/null 2>&1 /etc/apf/apf -s >> /dev/null 2>&1 It’s flushing and reloading the firewall. I don’t understand the...
  • May 11, 2022
  • 0 Comments
What is POSIX? I have read the Wikipedia article and I read it every time I encounter the term. The fact is that I never really understood what it...
  • April 15, 2022
  • 0 Comments