<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; desktops</title> <atom:link href="http://www.ghacks.net/tag/desktops/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 16:53:42 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Easily extend Nagios&#8217; functionality</title><link>http://www.ghacks.net/2010/03/27/easily-extend-nagios-functionality/</link> <comments>http://www.ghacks.net/2010/03/27/easily-extend-nagios-functionality/#comments</comments> <pubDate>Sat, 27 Mar 2010 18:13:55 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Advice]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Networks]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Advanced]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[desktops]]></category> <category><![CDATA[devices]]></category> <category><![CDATA[hosts]]></category> <category><![CDATA[nagios]]></category> <category><![CDATA[network monitor]]></category> <category><![CDATA[server]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=23990</guid> <description><![CDATA[My last article described how to &#8220;Quickly install Nagios on Ubunut&#8220;. That article had you up and running with the powerful open source network monitoring tool, but not much more. If you really want to make Nagios useful you have to do a bit of work. Some might see this work as too time consuming [...]]]></description> <content:encoded><![CDATA[<p>My last article described how to &#8220;<a
title="Quickly install Nagios on Ubuntu" href="http://www.ghacks.net/2010/03/27/quickly-install-nagios-on-ubuntu/" target="_blank">Quickly install Nagios on Ubunut</a>&#8220;. That article had you up and running with the powerful open source network monitoring tool, but not much more. If you really want to make Nagios useful you have to do a bit of work. Some might see this work as too time consuming and or challenging. I can understand that on a large network. Because Nagios can not do auto-discovery, it is up to the admin to configure any device to be monitored. Naturally no admin is going to want to monitor every single device on their network. That works out okay with Nagios. Now, if you are interested in monitoring every single device, on a larger network, you will either need to get clever with some scripting to search out your devices (and track down their associated addresses) or you will need to move on to a different solution.</p><p>But for those who only need to monitor a few devices, configuring Nagios to do so is actually quite simple. In this article I am going to show you a few configurations to handle and then how to add devices and checks for your installation.</p><p><span
id="more-23990"></span><strong>Post-install configurations and plugins</strong></p><p>Before you get busy setting up devices for Nagios to monitor, you should first install some extra plugins for the system. Open up Synaptic, search for &#8220;nagios&#8221; (no quotes), mark <em>nagios-plugins-extra</em> for installation, and click Apply to install. Once that is done you will already have more functionality with Nagios.</p><p>Now let&#8217;s take care of a couple of configurations. The first is in the <strong>/etc/nagios3/conf.d</strong> directory. The file is called <strong>contacts_nagios2.cfg</strong>. In this file you will configure who is to receive the email alerts. The line to set this configuration is:</p><p><em>email    root@localhost</em></p><p>You will want to change that email address. That is it for this configuration file. Now in order for Nagios to be able to send out alerts via email, the machine housing Nagios has to be able to send those alerts out. You can check that by using the <em>mail </em>command like so:</p><p><em>mail email@address -s TEST</em></p><p>Where email@address is an actual address you can use for testing.</p><p>Once you enter that line, hit Enter and then type some random text. When you&#8217;re done typing hit &lt;Ctrl&gt;d and then Enter. The mail should send away. If not you will have to troubleshoot your mail server (beyond the scope of this tutorial).</p><p><strong>Add a device</strong></p><div
id="attachment_23994" class="wp-caption alignleft" style="width: 309px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/03/nagios_windows1.png"><img
class="size-medium wp-image-23994 " src="http://www.ghacks.net/wp-content/uploads/2010/03/nagios_windows1-499x334.png" alt="" width="299" height="200" /></a><p
class="wp-caption-text">Figure 1</p></div><p>Now for the good stuff. We are going to add a device to Nagios. The device we will add is a Windows XP desktop to monitor. Within the <strong>/etc/nagios3/conf.d</strong> directory you will see a number of .cfg files. These are the files Nagios uses to dictate what is see and how it acts upon what it see. For every device you want to use, I find it best to add a .cfg file. So let&#8217;s create the file <strong>/etc/nagios3/conf.d/windows_xp.cfg</strong>. The contents of this fill will look like what you see in Figure 1.</p><p>As you can see there are a few directives here. The directives are as follows:</p><ul><li>check_command &#8211; The command used to check the status of the device.</li><li>max_check_attempts &#8211; How many times will Nagios retry the status check.</li><li>check_period &#8211; How often are the checks made.</li><li>process_perf_data &#8211; Enable the processing of performance data.</li><li>retain_nonstatus_information &#8211; Enable the retention of non-status information across reboots.</li><li>notification_interval &#8211; How often are notifications sent to inform the administrator this host is not okay.</li><li>notification_period &#8211; How often are notifications sent out.</li><li>notification_options &#8211; The options shown are w &#8211; send notifications on &#8220;warning&#8221; state, u &#8211; send notifications on &#8220;unknown&#8221; state, and &#8220;r&#8221; &#8211; send notifications when a service stops flapping (when a service changes frequently).</li></ul><p>NOTE: Depending upon the version of Nagios you have installed the <em>notification_options </em>will be different. Some instances will not accept the &#8220;w&#8221; option. If you get an error, exchange &#8220;w&#8221; with &#8220;d&#8221; (for down).</p><p>As you can see there are configuration options that will be specific to your devices and networking topology (host_name and address are examples). Once you have created this file save it and restart Nagios with the command <em>sudo /etc/init.d/nagios3 restart </em>command. Now take a look at your Nagios page and you will see the new device you just added.</p><p><strong>Final thoughts</strong></p><p>Someday someone will come up with an automated way to detect devices in Nagios. Until then we are relegated to adding them using this means. Does that mean you should shy away from Nagios? Not at all. Nagios is a powerful tool ready to help network administrators keep tabs on their network devices.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/03/27/easily-extend-nagios-functionality/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Multiple wallpapers in Compiz</title><link>http://www.ghacks.net/2010/01/15/multiple-wallpapers-in-compiz/</link> <comments>http://www.ghacks.net/2010/01/15/multiple-wallpapers-in-compiz/#comments</comments> <pubDate>Fri, 15 Jan 2010 15:49:04 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Advice]]></category> <category><![CDATA[Desktop Manager]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[Compiz]]></category> <category><![CDATA[desktops]]></category> <category><![CDATA[gconf-editor]]></category> <category><![CDATA[linux pager]]></category> <category><![CDATA[pager]]></category> <category><![CDATA[wallpaper]]></category> <category><![CDATA[workspaces]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=22350</guid> <description><![CDATA[Used to be, with GNOME it was simple to have multiple wallpapers configured so that each desktop would have its own wallpaper. But then Compiz came along and monkeyed with that option. But that option isn&#8217;t completely gone. You can still set it up, at the cost of desktop icons, with a little bit of [...]]]></description> <content:encoded><![CDATA[<p>Used to be, with GNOME it was simple to have multiple wallpapers configured so that each desktop would have its own wallpaper. But then Compiz came along and monkeyed with that option. But that option isn&#8217;t completely gone. You can still set it up, at the cost of desktop icons, with a little bit of configuration.</p><p>But why would you want multiple desktop wallpaper? It seems like nothing more than aesthetics? To many that is true &#8211; but for some power users it can make it quite obvious what desktop is for what job. I am one of those users that prefers to work with multiple desktops. It just makes work so much more efficient. But when you&#8217;re using Compiz (and why shouldn&#8217;t you be?) Setting up multiple wallpapers isn&#8217;t as simple as adding a new wallpaper to your existing configuration.  In this tutorial you will see just how to set up Compiz to work with multiple wallpaper.</p><p><span
id="more-22350"></span><strong>Assumptions</strong></p><p>The first of these assumptions is that you have Compiz working and the CompizConfig Settings Manager installed.  The second assumption is that you are using the GNOME desktop environment (for this article I am using GNOME 2.28.1. The final assumption is that you have no need for desktop icons. With that out of the way, let&#8217;s get to the configurations necessary.</p><p><strong>Compiz</strong></p><p>The first configuration is in the CCSM tool. You will find this tool in the <strong>System &gt; Preferences &gt; CompizConfig Settings Manager</strong>. When you fire up that tool enter &#8220;wallpaper&#8221; in the search field. The Wallpaper settings is listing under Utility. When you see it listed click on it to open up the options.</p><div
id="attachment_22351" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/ccsm_wallpaper.png"><img
class="size-medium wp-image-22351 " src="http://www.ghacks.net/wp-content/uploads/2010/01/ccsm_wallpaper-500x305.png" alt="" width="300" height="183" /></a><p
class="wp-caption-text">Figure 1</p></div><p>As you can see (in Figure 1)  there are only two sections to configure. The first is to click the checkbox to enable the Wallpaper for Compiz. The second is to add Wallpaper(s) by clicking the New button, navigating to where you have your images saved, selecting your wallpaper, select your Fill Type (do you want the image centered, scaled, etc), and click Close.</p><p>When you have that done you can close out CCSM. If you check you will still see only one wallpaper. What gives? You&#8217;re not done. Now it&#8217;s time to fire up another tool &#8211; gconf-editor.</p><p><strong>Gconf-editor</strong></p><div
id="attachment_22352" class="wp-caption alignright" style="width: 309px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/gconf_editor.png"><img
class="size-medium wp-image-22352 " src="http://www.ghacks.net/wp-content/uploads/2010/01/gconf_editor-499x408.png" alt="" width="299" height="245" /></a><p
class="wp-caption-text">Figure 2</p></div><p>Hit &lt;Alt&gt;F2 and type <em>gconf-editor</em> to open up this tool. You need to navigate to <strong>Apps &gt; Nautilus &gt; Preferences</strong> (see Figure 2) . Scroll down until you see the <em>show_desktop </em>entry. If that checkbox is checked, uncheck it and close the tool.</p><div
id="attachment_22353" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/01/desktop_screenshot.png"><img
class="size-medium wp-image-22353 " src="http://www.ghacks.net/wp-content/uploads/2010/01/desktop_screenshot-500x281.png" alt="" width="300" height="169" /></a><p
class="wp-caption-text">Figure 3</p></div><p>Now check your desktop. How many wallpapers do you see? As many as you added in CCSM? That should be the case. Hopefully you can see (in Figure 3) the two different wallpapers I have added to my desktop.  Of course I also have a few other features enabled in Compiz, but you get the idea.</p><p>Don&#8217;t forget to remember how many workspaces you have enabled. Although you don&#8217;t have to add as many wallpapers as you have workspaces, you don&#8217;t want to add more wallpapers than you have workspaces.</p><p><strong>Final thoughts</strong></p><p>I hope you can see how this little addition can make work a little easier. Create a specific wallpaper for administrative work, put it on a specific workspace, and only do your admin work there. It&#8217;s subtle, but effective.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/01/15/multiple-wallpapers-in-compiz/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Multiple Desktops for XP and Vista</title><link>http://www.ghacks.net/2008/08/17/multiple-desktops-for-xp-and-vista/</link> <comments>http://www.ghacks.net/2008/08/17/multiple-desktops-for-xp-and-vista/#comments</comments> <pubDate>Sun, 17 Aug 2008 14:27:25 +0000</pubDate> <dc:creator>joshua</dc:creator> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[desktops]]></category> <category><![CDATA[multiple]]></category> <category><![CDATA[ubuntu]]></category> <category><![CDATA[vista]]></category> <category><![CDATA[xp]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2008/08/17/multiple-desktops-for-xp-and-vista/</guid> <description><![CDATA[I’ve always loved the ease in which multiple desktops are accessible in Ubuntu (and other Linux OS’s as well I presume, I haven’t tried any) and find myself wishing for the same kind of functionality in Windows more and more. I really can’t see Microsoft adding it into Windows itself, not even for Windows 7, [...]]]></description> <content:encoded><![CDATA[<p>I’ve always loved the ease in which multiple desktops are accessible in Ubuntu (and other Linux OS’s as well I presume, I haven’t tried any) and find myself wishing for the same kind of functionality in Windows more and more.</p><p>I really can’t see Microsoft adding it into Windows itself, not even for Windows 7, so I’ll have to keep looking around for decent freeware alternatives.</p><p>The annoying thing is that as of yet, I haven’t really found any decent desktop managers which are simple, stable and perform well.</p><p> <span
id="more-6238"></span><p>Today however, I found one which I really liked the look of on <a
href="http://www.codeplex.com/">CodePlex</a>.</p><p>Multiple Desktops for XP and Vista is a alpha quality desktop manager which you can try out here, but is pretty unusable right now. What I liked about it is the simplicity, ease-of-use and generally good design. Using the new Windows Vista live thumbnails it can give <em>“give you a full screen preview of all of your desktops.”</em></p><p>At the moment however it’s slow and buggy, but I shall be keeping an eye on it for upcoming versions.</p><p>The full set of features includes:</p><ul><li>An infinite number of desktops only limited by the amount of memory in your computer</li><li>A full screen desktop/window manager/switcher</li><li>Live Vista thumbnails of all of your windows</li><li>An alpha-blended indicator window to provide a visual indicator when you switch between desktops</li><li>Hotkeys for up to 9 desktops using your numpad keys along with &quot;send window to desktop&quot; hotkeys</li><li>A system tray icon to access a menu containing items for every desktop, no matter how many</li><li>Multiple-monitor support</li><li>Arrow key hotkeys</li><li>One system tray icon per desktop (optional)</li><li>Window-specific menus</li><li>Sticky windows to exclude windows from the virtual desktop manager</li><li>Per-desktop backgrounds</li><li>XP support</li><li>Thumbnail window tool</li><li>Show all windows hotkey</li><li>Show mini-preview at cursor hotkey</li><li>Program rules for locking programs onto desktops</li><li>Command line arguments for launching programs onto desktops, switching desktops, and showing the switcher</li></ul><p> You can check it out <a
href="http://z-sys.org/products/vvdm.aspx">here</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/08/17/multiple-desktops-for-xp-and-vista/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> </channel> </rss>
