<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to install Nagios on Ubuntu server</title>
	<atom:link href="http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 15:56:47 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael Lee</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-903162</link>
		<dc:creator>Michael Lee</dc:creator>
		<pubDate>Wed, 21 Oct 2009 14:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-903162</guid>
		<description>I got this error during the configure as well.  Going through the nagios html docs I found a line to 

apt-get install build-essential

after that everything worked as suggested.</description>
		<content:encoded><![CDATA[<p>I got this error during the configure as well.  Going through the nagios html docs I found a line to </p>
<p>apt-get install build-essential</p>
<p>after that everything worked as suggested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Installing Nagios 3.1 on Ubuntu 9.04 &#171; Blog</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-867853</link>
		<dc:creator>Installing Nagios 3.1 on Ubuntu 9.04 &#171; Blog</dc:creator>
		<pubDate>Sat, 15 Aug 2009 18:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-867853</guid>
		<description>[...] detailed guide can be found here Feel free to leave comments if it was helpful or if you have any questions. [...]</description>
		<content:encoded><![CDATA[<p>[...] detailed guide can be found here Feel free to leave comments if it was helpful or if you have any questions. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: server support</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-837377</link>
		<dc:creator>server support</dc:creator>
		<pubDate>Thu, 25 Jun 2009 08:39:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-837377</guid>
		<description>This Tutorial is intended to provide you with simple instructions on how to install Nagios from source (code) on Ubuntu and have it monitoring your local machine inside of 20 minutes.

If you follow these instructions, here’s what you’ll end up with:

Nagios and the plugins will be installed underneath /usr/local/nagios

Nagios will be configured to monitor a few aspects of your local system (CPU load, disk usage, etc.)

The Nagios web interface will be accessible at http://localhost/nagios/


Required Packages:
.................

Make sure you’ve installed the following packages on your Ubuntu installation before continuing.

Apache 2
GCC compiler and development libraries
GD development libraries

Preparing Your System

First you need to install the following packages

sudo apt-get install apache2

sudo apt-get install build-essential

sudo apt-get install libgd2-xpm-dev

1) Create Account Information

Become the root user.

sudo -s

Create a new nagios user account and give it a password.

#/usr/sbin/useradd nagios

#passwd nagios

On Ubuntu server edition , you will need to also add a nagios group (it’s not created by default). You should be able to skip this step on desktop editions of Ubuntu.

#/usr/sbin/groupadd nagios

#/usr/sbin/usermod -G nagios nagios

Create a new nagcmd group for allowing external commands to be submitted through the web interface. Add both the nagios user and the apache user to the group.

#/usr/sbin/groupadd nagcmd

#/usr/sbin/usermod -G nagcmd nagios

#/usr/sbin/usermod -G nagcmd www-data

2) Download Nagios and the Plugins

Create a directory for storing the downloads.

#mkdir ~/downloads

#cd ~/downloads

Download the source code tarballs of both Nagios and the Nagios plugins (visit http://www.nagios.org/download/ for links to the latest versions). At the time of writing, the latest versions of Nagios and the Nagios plugins were 2.10 and 1.4.10, respectively.

#wget http://switch.dl.sourceforge.net/sourceforge/nagios/nagios-2.10.tar.gz

#wget http://kent.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.10.tar.gz

3) Compile and Install Nagios

Extract the Nagios source code tarball.

#cd ~/downloads

#tar xzf nagios-2.10.tar.gz

#cd nagios-2.10

Run the Nagios configure script, passing the name of the group you created earlier like so:

#./configure --with-command-group=nagcmd

Compile the Nagios source code.

#make all

Install binaries, init script, sample config files and set permissions on the external command directory.

#make install

#make install-init

#make install-config

#make install-commandmode

Don’t start Nagios yet – there’s still more that needs to be done…

4) Customize Configuration

Sample configuration files have now been installed in the /usr/local/nagios/etc directory. These sample files should work fine for getting started with Nagios. You’ll need to make just one change before you proceed…

Edit the /usr/local/nagios/etc/objects/contacts.cfg config file with your favorite editor and change the email address associated with the nagiosadmin contact definition to the address you’d like to use for receiving alerts.

#vi /usr/local/nagios/etc/objects/contacts.cfg

5) Configure the Web Interface

Install the Nagios web config file in the Apache conf.d directory.

#make install-webconf

Create a nagiosadmin account for logging into the Nagios web interface. Remember the password you assign to this account – you’ll need it later.

#htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

Restart Apache to make the new settings take effect.

#/etc/init.d/apache2 reload

6) Compile and Install the Nagios Plugins

Extract the Nagios plugins source code tarball.

#cd ~/downloads

#tar xzf nagios-plugins-1.4.10.tar.gz

#cd nagios-plugins-1.4.10

Compile and install the plugins.

#./configure --with-nagios-user=nagios --with-nagios-group=nagios

#make

#make install

7) Start Nagios

Configure Nagios to automatically start when the system boots.

#ln -s /etc/init.d/nagios /etc/rcS.d/S99nagios

Verify the sample Nagios configuration files.

#/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

If there are no errors, start Nagios.

#/etc/init.d/nagios start
8) Login to the Web Interface

You should now be able to access the Nagios web interface at the URL below. You’ll be prompted for the username (nagiosadmin) and password you specified earlier.

http://localhost/nagios/

Click on the “Service Detail” navbar link to see details of what’s being monitored on your local machine. It will take a few minutes for Nagios to check all the services associated with your machine, as the checks are spread out over time.

9) Other Modifications

If you want to receive email notifications for Nagios alerts, you need to install the mailx (Postfix) package.

#apt-get install mailx

You’ll have to edit the Nagios email notification commands found in /usr/local/nagios/etc/commands.cfg and change any ‘/bin/mail’ references to ‘/usr/bin/mail’. Once you do that you’ll need to restart Nagios to make the configuration changes live.

#/etc/init.d/nagios restart</description>
		<content:encoded><![CDATA[<p>This Tutorial is intended to provide you with simple instructions on how to install Nagios from source (code) on Ubuntu and have it monitoring your local machine inside of 20 minutes.</p>
<p>If you follow these instructions, here’s what you’ll end up with:</p>
<p>Nagios and the plugins will be installed underneath /usr/local/nagios</p>
<p>Nagios will be configured to monitor a few aspects of your local system (CPU load, disk usage, etc.)</p>
<p>The Nagios web interface will be accessible at <a href="http://localhost/nagios/" rel="nofollow">http://localhost/nagios/</a></p>
<p>Required Packages:<br />
&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
<p>Make sure you’ve installed the following packages on your Ubuntu installation before continuing.</p>
<p>Apache 2<br />
GCC compiler and development libraries<br />
GD development libraries</p>
<p>Preparing Your System</p>
<p>First you need to install the following packages</p>
<p>sudo apt-get install apache2</p>
<p>sudo apt-get install build-essential</p>
<p>sudo apt-get install libgd2-xpm-dev</p>
<p>1) Create Account Information</p>
<p>Become the root user.</p>
<p>sudo -s</p>
<p>Create a new nagios user account and give it a password.</p>
<p>#/usr/sbin/useradd nagios</p>
<p>#passwd nagios</p>
<p>On Ubuntu server edition , you will need to also add a nagios group (it’s not created by default). You should be able to skip this step on desktop editions of Ubuntu.</p>
<p>#/usr/sbin/groupadd nagios</p>
<p>#/usr/sbin/usermod -G nagios nagios</p>
<p>Create a new nagcmd group for allowing external commands to be submitted through the web interface. Add both the nagios user and the apache user to the group.</p>
<p>#/usr/sbin/groupadd nagcmd</p>
<p>#/usr/sbin/usermod -G nagcmd nagios</p>
<p>#/usr/sbin/usermod -G nagcmd www-data</p>
<p>2) Download Nagios and the Plugins</p>
<p>Create a directory for storing the downloads.</p>
<p>#mkdir ~/downloads</p>
<p>#cd ~/downloads</p>
<p>Download the source code tarballs of both Nagios and the Nagios plugins (visit <a href="http://www.nagios.org/download/" rel="nofollow">http://www.nagios.org/download/</a> for links to the latest versions). At the time of writing, the latest versions of Nagios and the Nagios plugins were 2.10 and 1.4.10, respectively.</p>
<p>#wget <a href="http://switch.dl.sourceforge.net/sourceforge/nagios/nagios-2.10.tar.gz" rel="nofollow">http://switch.dl.sourceforge.net/sourceforge/nagios/nagios-2.10.tar.gz</a></p>
<p>#wget <a href="http://kent.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.10.tar.gz" rel="nofollow">http://kent.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.10.tar.gz</a></p>
<p>3) Compile and Install Nagios</p>
<p>Extract the Nagios source code tarball.</p>
<p>#cd ~/downloads</p>
<p>#tar xzf nagios-2.10.tar.gz</p>
<p>#cd nagios-2.10</p>
<p>Run the Nagios configure script, passing the name of the group you created earlier like so:</p>
<p>#./configure &#8211;with-command-group=nagcmd</p>
<p>Compile the Nagios source code.</p>
<p>#make all</p>
<p>Install binaries, init script, sample config files and set permissions on the external command directory.</p>
<p>#make install</p>
<p>#make install-init</p>
<p>#make install-config</p>
<p>#make install-commandmode</p>
<p>Don’t start Nagios yet – there’s still more that needs to be done…</p>
<p>4) Customize Configuration</p>
<p>Sample configuration files have now been installed in the /usr/local/nagios/etc directory. These sample files should work fine for getting started with Nagios. You’ll need to make just one change before you proceed…</p>
<p>Edit the /usr/local/nagios/etc/objects/contacts.cfg config file with your favorite editor and change the email address associated with the nagiosadmin contact definition to the address you’d like to use for receiving alerts.</p>
<p>#vi /usr/local/nagios/etc/objects/contacts.cfg</p>
<p>5) Configure the Web Interface</p>
<p>Install the Nagios web config file in the Apache conf.d directory.</p>
<p>#make install-webconf</p>
<p>Create a nagiosadmin account for logging into the Nagios web interface. Remember the password you assign to this account – you’ll need it later.</p>
<p>#htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin</p>
<p>Restart Apache to make the new settings take effect.</p>
<p>#/etc/init.d/apache2 reload</p>
<p>6) Compile and Install the Nagios Plugins</p>
<p>Extract the Nagios plugins source code tarball.</p>
<p>#cd ~/downloads</p>
<p>#tar xzf nagios-plugins-1.4.10.tar.gz</p>
<p>#cd nagios-plugins-1.4.10</p>
<p>Compile and install the plugins.</p>
<p>#./configure &#8211;with-nagios-user=nagios &#8211;with-nagios-group=nagios</p>
<p>#make</p>
<p>#make install</p>
<p>7) Start Nagios</p>
<p>Configure Nagios to automatically start when the system boots.</p>
<p>#ln -s /etc/init.d/nagios /etc/rcS.d/S99nagios</p>
<p>Verify the sample Nagios configuration files.</p>
<p>#/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg</p>
<p>If there are no errors, start Nagios.</p>
<p>#/etc/init.d/nagios start<br />
8) Login to the Web Interface</p>
<p>You should now be able to access the Nagios web interface at the URL below. You’ll be prompted for the username (nagiosadmin) and password you specified earlier.</p>
<p><a href="http://localhost/nagios/" rel="nofollow">http://localhost/nagios/</a></p>
<p>Click on the “Service Detail” navbar link to see details of what’s being monitored on your local machine. It will take a few minutes for Nagios to check all the services associated with your machine, as the checks are spread out over time.</p>
<p>9) Other Modifications</p>
<p>If you want to receive email notifications for Nagios alerts, you need to install the mailx (Postfix) package.</p>
<p>#apt-get install mailx</p>
<p>You’ll have to edit the Nagios email notification commands found in /usr/local/nagios/etc/commands.cfg and change any ‘/bin/mail’ references to ‘/usr/bin/mail’. Once you do that you’ll need to restart Nagios to make the configuration changes live.</p>
<p>#/etc/init.d/nagios restart</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Shacklett</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-829754</link>
		<dc:creator>Brian Shacklett</dc:creator>
		<pubDate>Wed, 17 Jun 2009 23:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-829754</guid>
		<description>In my searches, I&#039;ve noticed that a lot of people are installing Nagios from source on Ubuntu. I&#039;m curious why you chose this route as opposed to installing the pre-built packages.</description>
		<content:encoded><![CDATA[<p>In my searches, I&#8217;ve noticed that a lot of people are installing Nagios from source on Ubuntu. I&#8217;m curious why you chose this route as opposed to installing the pre-built packages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Oakley</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-829489</link>
		<dc:creator>Adam Oakley</dc:creator>
		<pubDate>Wed, 17 Jun 2009 18:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-829489</guid>
		<description>Jack,
     I am following your guide to install Nagios on a Ubuntu server. However when I get to the following command it does not seem to like it.
The command is Sudo ./configure -with-command-group=magcmd

After I input this command I get the following:
Checking for a BSD-compatible install... /usr/bin/install -c
Checking build system type... i686-pc-linux-gnulibc1
Checking host system type... i686-pc-linux-gnulibc1
Checking for gcc... gcc
Checking for C compiler default output file name... configure: error: C compiler cannot create executables
See &#039;config.log&#039; for more details.

All the steps leading up to this have worked great not sure why this one is giving me troubles. If anyone has any ideas please let me know. thank you.

Adam</description>
		<content:encoded><![CDATA[<p>Jack,<br />
     I am following your guide to install Nagios on a Ubuntu server. However when I get to the following command it does not seem to like it.<br />
The command is Sudo ./configure -with-command-group=magcmd</p>
<p>After I input this command I get the following:<br />
Checking for a BSD-compatible install&#8230; /usr/bin/install -c<br />
Checking build system type&#8230; i686-pc-linux-gnulibc1<br />
Checking host system type&#8230; i686-pc-linux-gnulibc1<br />
Checking for gcc&#8230; gcc<br />
Checking for C compiler default output file name&#8230; configure: error: C compiler cannot create executables<br />
See &#8216;config.log&#8217; for more details.</p>
<p>All the steps leading up to this have worked great not sure why this one is giving me troubles. If anyone has any ideas please let me know. thank you.</p>
<p>Adam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tho</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-827498</link>
		<dc:creator>tho</dc:creator>
		<pubDate>Mon, 15 Jun 2009 14:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-827498</guid>
		<description>Hi Jack.

I&#039;m pretty new to linux but i followed your manual and everything worked out fine, no errors or warnings.  How ever the last command &quot;sudo /etc/init.d/nagios start&quot; does not work - &quot;command not found&quot;.  Any advice on how to fix this?

Thanks for a straight forward and easy to use manual, just the thing I needed.

tho.</description>
		<content:encoded><![CDATA[<p>Hi Jack.</p>
<p>I&#8217;m pretty new to linux but i followed your manual and everything worked out fine, no errors or warnings.  How ever the last command &#8220;sudo /etc/init.d/nagios start&#8221; does not work &#8211; &#8220;command not found&#8221;.  Any advice on how to fix this?</p>
<p>Thanks for a straight forward and easy to use manual, just the thing I needed.</p>
<p>tho.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to install Nagios on Ubuntu server &#124; Ubuntu-News - Your one stop for news about Ubuntu</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-820469</link>
		<dc:creator>How to install Nagios on Ubuntu server &#124; Ubuntu-News - Your one stop for news about Ubuntu</dc:creator>
		<pubDate>Wed, 10 Jun 2009 16:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-820469</guid>
		<description>[...] will keep you busy with more information about your system than you ever thought possible. More here You want features? Nagios is full of them. Nagios can monitor your entire network, you can handle [...]</description>
		<content:encoded><![CDATA[<p>[...] will keep you busy with more information about your system than you ever thought possible. More here You want features? Nagios is full of them. Nagios can monitor your entire network, you can handle [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Veckans länktips - 2009-06-09 &#124; På spaning med Crusell</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-818921</link>
		<dc:creator>Veckans länktips - 2009-06-09 &#124; På spaning med Crusell</dc:creator>
		<pubDate>Tue, 09 Jun 2009 04:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-818921</guid>
		<description>[...] How to install Nagios on Ubuntu server [...]</description>
		<content:encoded><![CDATA[<p>[...] How to install Nagios on Ubuntu server [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Wallen</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-818497</link>
		<dc:creator>Jack Wallen</dc:creator>
		<pubDate>Mon, 08 Jun 2009 12:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-818497</guid>
		<description>if you do install it this way (via apt) you will install it with the command:
sudo apt-get install nagios3

you will have to answer a few questions during the installation - most of them to do with email. 

WARNING: i did try to run this type of installation and nagios wound up working but no plugins would work with it. installing via source didn&#039;t have these problems.</description>
		<content:encoded><![CDATA[<p>if you do install it this way (via apt) you will install it with the command:<br />
sudo apt-get install nagios3</p>
<p>you will have to answer a few questions during the installation &#8211; most of them to do with email. </p>
<p>WARNING: i did try to run this type of installation and nagios wound up working but no plugins would work with it. installing via source didn&#8217;t have these problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: server support</title>
		<link>http://www.ghacks.net/2009/06/08/how-to-install-nagios-on-ubuntu-server/#comment-818465</link>
		<dc:creator>server support</dc:creator>
		<pubDate>Mon, 08 Jun 2009 11:47:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/?p=13369#comment-818465</guid>
		<description>Nagios is a free, open-source tool that can be used to monitor network components and services.  When it detects a problem, it can send 

alert messages by either e-mailr. then server engineer easily can manage his network.  It can also be configured so that only designated 

personnel can view status information for particular services or equipment.  

Installation:
Nagios3 is in the repository for Ubuntu 8.10.

we can watch that it will install a number of packages to make it all work.
The following extra packages will be installed:
libfreetype6 libgd2-noxpm libjpeg62 libnet-snmp-perl libperl5.10 libpng12-0
libradius1 libsensors3 libsnmp-base libsnmp15 libsysfs2 libtalloc1
libwbclient0 nagios-images nagios-plugins nagios-plugins-basic
nagios-plugins-standard nagios3-common nagios3-doc radiusclient1
samba-common smbclient snmp

Suggested packages:
libfreetype6-dev libgd-tools libcrypt-des-perl libdigest-hmac-perl
libdigest-sha1-perl libio-socket-inet6-perl lm-sensors nagios2 nagios-text
nagios whois nagios-nrpe-plugin smbfs
The following NEW packages will be installed:
libfreetype6 libgd2-noxpm libjpeg62 libnet-snmp-perl libperl5.10 libpng12-0
libradius1 libsensors3 libsnmp-base libsnmp15 libsysfs2 libtalloc1
libwbclient0 nagios-images nagios-plugins nagios-plugins-basic
nagios-plugins-standard nagios3 nagios3-common nagios3-doc radiusclient1
samba-common smbclient snmp
0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded.
Need to get 19.5MB of archives.
After this operation, 54.6MB of additional disk space will be used.

Once it is installed run a pre-flight check to verify it is working correctly.</description>
		<content:encoded><![CDATA[<p>Nagios is a free, open-source tool that can be used to monitor network components and services.  When it detects a problem, it can send </p>
<p>alert messages by either e-mailr. then server engineer easily can manage his network.  It can also be configured so that only designated </p>
<p>personnel can view status information for particular services or equipment.  </p>
<p>Installation:<br />
Nagios3 is in the repository for Ubuntu 8.10.</p>
<p>we can watch that it will install a number of packages to make it all work.<br />
The following extra packages will be installed:<br />
libfreetype6 libgd2-noxpm libjpeg62 libnet-snmp-perl libperl5.10 libpng12-0<br />
libradius1 libsensors3 libsnmp-base libsnmp15 libsysfs2 libtalloc1<br />
libwbclient0 nagios-images nagios-plugins nagios-plugins-basic<br />
nagios-plugins-standard nagios3-common nagios3-doc radiusclient1<br />
samba-common smbclient snmp</p>
<p>Suggested packages:<br />
libfreetype6-dev libgd-tools libcrypt-des-perl libdigest-hmac-perl<br />
libdigest-sha1-perl libio-socket-inet6-perl lm-sensors nagios2 nagios-text<br />
nagios whois nagios-nrpe-plugin smbfs<br />
The following NEW packages will be installed:<br />
libfreetype6 libgd2-noxpm libjpeg62 libnet-snmp-perl libperl5.10 libpng12-0<br />
libradius1 libsensors3 libsnmp-base libsnmp15 libsysfs2 libtalloc1<br />
libwbclient0 nagios-images nagios-plugins nagios-plugins-basic<br />
nagios-plugins-standard nagios3 nagios3-common nagios3-doc radiusclient1<br />
samba-common smbclient snmp<br />
0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 19.5MB of archives.<br />
After this operation, 54.6MB of additional disk space will be used.</p>
<p>Once it is installed run a pre-flight check to verify it is working correctly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
