Nagios is RedHat’s Standard Alerting System

We’re happy to inform the Nagios Community2009-09-21-redhat-nagios that Nagios is used as RedHat’s standard alerting system. Nick Otto gave a presentation at the RedHat Summit in Chicago earlier this month, in which he covers Nagios and other great OSS tools that are used inside one of the front-runners in commercial Open Source.
Thanks to Subhendu Ghosh for letting us know about this!

http://www.nagios.org/news/77-news-announcements/230-nagios-is-redhats-standard-alerting-system

Rpm query arch

rpm -q pakage_name --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n"

Giusto perché non ricordo mai come far visualizzare a rpm una lista coerente di pacchetti con relative architetture.

Per esempio:

rpm -q glibc-devel-2.3.4-2.41 --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n"

glibc-devel-2.3.4.2.41 (x86_64)
glibc-devel-2.3.4.2.41 (i386)

Se, invece, si desidera la lista di tutti i pacchetti installati, con relative architetture:

rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE}-(%{ARCH})\n"