Red hat / CentOS / Fedora Send Yum Package Update Notification Via Email

To send package update notifications via email on a Red Hat/CentOS/Fedora system, you can use the yum-cron package, which is part of the yum-utils package. Here’s how to set up yum-cron to send email notifications: Install the yum-cron package: sudo yum install yum-cron Open the /etc/yum/yum-cron.conf file for editing: sudo vi /etc/yum/yum-cron.conf Change the following … Read more

Solaris UNIX Case-Insensitive Find File Search

To perform a case-insensitive find file search in Solaris, you can use the find command with the -iname option. The -iname option searches for files that match the given pattern case-insensitively. Here’s the basic syntax: find /path/to/search -iname “pattern” Here’s an example command that searches for all files in the current directory and its subdirectories … Read more

FreeBSD: Install bindgraph To Make Graphs About Queries Sent To BIND

bindgraph is a utility for BIND (Berkeley Internet Name Domain) that generates graphs about queries sent to BIND. To install bindgraph in FreeBSD, follow these steps: Open a terminal and log in as root. Install the bindgraph package using the following command: pkg install bindgraph This command will download and install the bindgraph package from … Read more