usbrip

usbrip (inherited from “USB Ripper”, not “USB R.I.P.”) is a simple forensics tool with command line interface that lets you keep track of USB device artifacts (i.e., USB event history) on Linux machines. https://github.com/snovvcrash/usbrip usbrip is a small piece of software which analyzes Linux log data: journalctl output or contents of /var/log/syslog* (/var/log/messages*) files. Based …

How to Upgrade containers with docker-compose?

Another question is how to upgrade to the latest version of nginx or wordpress docker images in our deployment. Since all user data is outside the containers, we can easily delete the containers and re-create them to upgrade our installation. https://www.linode.com/docs/guides/wordpress-with-docker-compose/ docker-compose down docker-compose pull && docker-compose up -d

Creating Monitoring Dashboards

https://medium.com/expedia-group-tech/creating-monitoring-dashboards-1f3fbe0ae1ac In this article we went through best practices on monitoring metrics and dashboards and showed you how to create Grafana dashboards based on Prometheus metrics. These examples can be used as a starting point to craft more complex queries and more visualisations. However, always keep in mind that less is more, and simple is …