<?xml version="1.0"?>
<rss version="2.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007" xmlns:atom="http://www.w3.org/2005/Atom">
   <channel>
      <title>Sheen on the Web</title>
      <description>This feed aggregates content created by Sheen around the Internet.</description>
      <link>http://pipes.yahoo.com/pipes/pipe.info?_id=1ff0425536f94b6e3354e7bb1163e1af</link>
      <atom:link rel="next" href="http://pipes.yahoo.com/pipes/pipe.run?_id=1ff0425536f94b6e3354e7bb1163e1af&amp;_render=rss&amp;page=2"/>
      <pubDate>Thu, 01 Oct 2015 22:35:35 +0000</pubDate>
      <generator>http://pipes.yahoo.com/pipes/</generator>
      <item>
         <title>List all mailboxes set to forward externally</title>
         <link>http://www.sheenaustin.com/2015/03/09/list-all-mailboxes-set-to-forward-externally/</link>
         <description>Quick script to get a list of all mailboxes that forward to non-authoritative domains.</description>
         <guid isPermaLink="false">http://www.sheenaustin.com/?p=513</guid>
         <pubDate>Mon, 09 Mar 2015 19:29:24 +0000</pubDate>
         <content:encoded><![CDATA[<p>Quick script to get a list of all mailboxes that forward to non-authoritative domains.</p>
<pre>
$AcceptedDomains = Get-AcceptedDomain
$ExternalForwardEnabled = Get-Mailbox -Filter {ForwardingAddress -ne $null} -ResultSize Unlimited
$Results = @()
foreach ($ExternalForward in $ExternalForwardEnabled) {
    $Recipient = Get-Recipient $ExternalForward.ForwardingAddress
    if ((($Recipient).PrimarySMTPAddress).Domain -notin ($AcceptedDomains.DomainName).Domain) {
        $Object = New-Object PSObject -Property @{
            DisplayName = $(($ExternalForward).Name)
            Alias = $(($ExternalForward).Alias)
            ExternalAddress = $(($Recipient.PrimarySmtpAddress).ToString())
            ExternalDomain = $($Recipient.PrimarySmtpAddress).Domain
            }
        $Object
        $Results += $Object
        }
    }

$Results | Select DisplayName,Alias,ExternalAddress,ExternalDomain | Sort ExternalDomain
</pre>]]></content:encoded>
      </item>
      <item>
         <title>Block Ads using dnsmasq – Synology</title>
         <link>http://www.sheenaustin.com/2014/07/23/block-ads-using-dnsmasq/</link>
         <description>DNSMasq is a very light-weight DNS server that is perfectly suited to run on low power home appliances like NAS devices or routers running custom firmware. The script below pulls ad blocking host files from 3 different providers and combines them to use as a DNSMasq resolver file. Here is the script &amp;#8211; it can [&amp;#8230;]</description>
         <guid isPermaLink="false">http://www.sheenaustin.com/?p=506</guid>
         <pubDate>Thu, 24 Jul 2014 02:42:47 +0000</pubDate>
         <content:encoded><![CDATA[<p>DNSMasq is a very light-weight DNS server that is perfectly suited to run on low power home appliances like NAS devices or routers running custom firmware.<br />
The script below pulls ad blocking host files from 3 different providers and combines them to use as a DNSMasq resolver file.</p>
<p>Here is the script &#8211; it can be used verbatim on a Synology NAS running the DNSMasq package from http://syndnsmasq.the-ninth.com/.</p>
<p>Edit the DNSMasq file to add an entry &#8216;addn-hosts&#8217; to point to the hosts file that was just created &#8211; for example:<br />
addn-hosts=/root/AdBlock/adblock.uniq</p>
<pre>
#!/bin/sh
cd ~/AdBlock&lt;/code&gt;

echo &quot;# Generated on: $(date +&quot;%D %T&quot;)&quot; &amp;gt; adblock

echo &quot;Downloading file from YoYo.org&quot;
wget -O yoyo http://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&amp;amp;showintro=0
wait
echo &quot;Processing YoYo.org file&quot;
cat yoyo | grep &quot;127.0.0.1&quot; | awk '{ print &quot;0.0.0.0&#92;t&quot;$2 }' &amp;gt;&amp;gt; adblock
wait

echo &quot;Downloading file from SomeoneWhoCares.org&quot;
wget -O swc http://someonewhocares.org/hosts/zero/
wait
echo &quot;Processing SomeoneWhoCares.org file&quot;
cat swc | grep &quot;0.0.0.0&quot; | awk '{ print &quot;0.0.0.0&#92;t&quot;$2 }' | grep -v &quot;#&quot; &amp;gt;&amp;gt; adblock
wait

echo &quot;Downloading file from MVPS.org&quot;
wget -O mvps http://winhelp2002.mvps.org/hosts.txt
wait
echo &quot;Processing MVPS.org file&quot;
cat mvps | grep 0.0.0.0 | grep -v &quot;# 0.0.0.0&quot; | awk '{ print &quot;0.0.0.0&#92;t&quot;$2 }' &amp;gt;&amp;gt; adblock
wait

echo &quot;Downloading file from HPHosts&quot;
wget -O hphosts http://hosts-file.net/download/hosts.txt
wait
echo &quot;Processing HPHosts file&quot;
cat hphosts | grep &quot;127.0.0.1&quot; | awk '{ print &quot;0.0.0.0&#92;t&quot;$2 }' &amp;gt;&amp;gt; adblock
wait

echo &quot;Writing changes to zone file&quot;
tr '[A-Z]' '[a-z]' &amp;lt; adblock | sort -f | uniq &amp;gt; adblock.uniq
wait

echo &quot;Reloading DNS Server&quot;
/var/packages/dnsmasq/scripts/start-stop-status stop
/var/packages/dnsmasq/scripts/start-stop-status start
/var/packages/dnsmasq/scripts/start-stop-status status
</pre>]]></content:encoded>
      </item>
      <item>
         <title>Get complete ESX Host inventory from VCenter</title>
         <link>http://www.sheenaustin.com/2013/08/06/get-complete-esx-host-inventory-from-vcenter/</link>
         <description>This is a handy little script that gives you a complete list of all hosts and some pertinent information about them including Config Issues reported by VCenter. The script saves all this information to a CSV file and emails the contents of that file in a formatted table to the email address you specify. Let [&amp;#8230;]</description>
         <guid isPermaLink="false">http://www.sheenaustin.com/?p=494</guid>
         <pubDate>Tue, 06 Aug 2013 14:22:32 +0000</pubDate>
         <content:encoded><![CDATA[<p>This is a handy little script that gives you a complete list of all hosts and some pertinent information about them including Config Issues reported by VCenter.<br />
The script saves all this information to a CSV file and emails the contents of that file in a formatted table to the email address you specify.<br />
Let me know if there are other parameters that you think should be in here but aren&#8217;t and I will put them in here.<span id="more-494"></span></p>
<pre>
$from = &quot;vSphereReports@example.com&quot;
$to = @(&quot;email@example.com&quot;)
$smtpserver = &quot;smtp.example.com&quot;
$vcenterserver = &quot;vc.example.com&quot;

if (!(Get-PSSnapin | where {$_.Name -eq &quot;VMware.VimAutomation.Core&quot;}))
{
	Write-Verbose &quot;Loading the VMWare snapin&quot;
	try
	{
		Add-PSSnapin VMware.VimAutomation.Core -ErrorAction STOP
	}
	catch
	{
		#Snapin not loaded
		Write-Warning $_.Exception.Message
		EXIT
	}
	Connect-VIServer $vcenterserver
}

$log = &quot;$(Get-Date -format &quot;MM-dd-yyyy&quot;).csv&quot;

&quot;Datacenter,Cluster,VMHost,ESXVersion,Vendor,Model,BIOSVersion,BIOSDate,CPU,Sockets,Memory(GB),NICs,ConfigIssues&quot; &gt; $log

foreach ($Datacenter in (Get-Datacenter)) {

    foreach ($Cluster in ($Datacenter | Get-Cluster)) {

        foreach ($VMHost in ($Cluster | Get-VMHost)) {
            $VMHostView = $VMHost | Get-View
            $ESXVersion = $VMHostView.Config.Product.FullName
            $Vendor = $VMHostView.Hardware.SystemInfo.Vendor
            $Model = $VMHostView.Hardware.SystemInfo.Model
            $BIOSVersion = $VMHostView.Hardware.BiosInfo.BiosVersion
            $BIOSdate = $VMHostView.Hardware.BiosInfo.releaseDate
            $CPUType = $VMHostView.Hardware.CpuPkg.Description | Get-Unique
            $CPUCount = $VMHostView.Hardware.CpuPkg.Count
            $MemoryGB = ($VMHostView.Hardware.MemorySize)/(1024*1024*1024) -as [int]
            $PhyNics = (($VMHost | Get-VirtualSwitch).Nic).Count
            $ConfigIssues = $VMHost.extensiondata.configissue.fullformattedmessage | Out-String -Stream
            &quot;$Datacenter,$Cluster,$VMhost,$ESXVersion,$Vendor,$Model,$BIOSVersion,$BIOSDate,$CPUType,$CPUCount,$MemoryGB,$PhyNics,$ConfigIssues&quot; &gt;&gt; $log
            }
        }
    }

$head = @'&lt;/pre&gt;
&lt;style&gt;&lt;!--
p {font-family:Calibri;
    font-size:9pt;
    background-color:yellow; }
body { font-family:Calibri;
       font-size:9pt; }
td, th { border:1px solid black;
         border-collapse:collapse; }
th { color:white;
     background-color:green; }
table, tr, td, th { padding: 2px; margin: 0px }
table { margin-left:50px; }
--&gt;&lt;/style&gt;
&lt;pre&gt;
'@

$body=import-csv $log | convertto-html -head $head

Send-MailMessage -to $to -from $from -smtpserver $smtpserver -subject &quot;ESX Host Info $(Get-Date -format dd/MM/yyyy)&quot; -body &quot;$($body)&quot; -bodyashtml
</pre>]]></content:encoded>
      </item>
      <item>
         <title>Find space consumed by a Thin Provisioned vmdk</title>
         <link>http://www.sheenaustin.com/2013/07/08/find-consumed-by-a-thin-provisioned-vmdk/</link>
         <description>Here&amp;#8217;s some fun commands to get some stats on Thin provisioned disks. To find out the actual space consumed on disk (in GB): To find out the total space provisioned (in GB): Percent not used:</description>
         <guid isPermaLink="false">http://www.sheenaustin.com/?p=489</guid>
         <pubDate>Tue, 09 Jul 2013 04:35:07 +0000</pubDate>
         <content:encoded><![CDATA[<p>Here&#8217;s some fun commands to get some stats on Thin provisioned disks.</p>
<p>To find out the actual space consumed on disk (in GB):</p>
<pre>
stat &lt;filename-flat&gt;.vmdk | grep Size: | awk '{print (($4*512)/(1024*1024*1024))}'
</pre>
<p>To find out the total space provisioned (in GB):</p>
<pre>
stat &lt;filename-flat&gt;.vmdk | grep Size: | awk '{print ($2/(1024*1024*1024))}'
</pre>
<p>Percent not used:</p>
<pre>
stat &lt;filename-flat&gt;.vmdk | grep Size: | awk '{print ((($2/(1024*1024*1024))-($4*512)/(1024*1024*1024))/($2/(1024*1024*1024)))*100}'
</pre>]]></content:encoded>
      </item>
      <item>
         <title>Get total size of all delta files on a datastore</title>
         <link>http://www.sheenaustin.com/2013/06/30/get-total-size-of-all-delta-files-on-a-datastore/</link>
         <description>This quick one liner give you the total size in GB of all delta files in a vmware datastore. Run this from an ssh session from the root of the datastore. Here&amp;#8217;s the one liner:</description>
         <guid isPermaLink="false">http://www.sheenaustin.com/?p=486</guid>
         <pubDate>Mon, 01 Jul 2013 04:47:16 +0000</pubDate>
         <content:encoded><![CDATA[<p>This quick one liner give you the total size in GB of all delta files in a vmware datastore. Run this from an ssh session from the root of the datastore.</p>
<p>Here&#8217;s the one liner:</p>
<pre>
ls -lrtR | grep -E &quot;delta&quot; | awk '{total += $5} END {print ((total/1024)/1024/1024)}'
</pre>]]></content:encoded>
      </item>
      <item>
         <title>Firefox releases the Firefox OS Simulator</title>
         <link>http://www.legallygeek.com/technology/firefox-releases-the-firefox-os-simulator/</link>
         <description>Firefox just released a simulator that you can download to find out what the OS looks like. This has been primarily released for developers but since its now out in the wild, its there for all to use. How to get it for yourself: Install the latest version of firefox from here. Download the firefox ...&lt;a rel=&quot;nofollow&quot; class=&quot;post-readmore&quot; target=&quot;_blank&quot; href=&quot;http://www.legallygeek.com/technology/firefox-releases-the-firefox-os-simulator/&quot;&gt;read more&lt;/a&gt;</description>
         <guid isPermaLink="false">http://www.legallygeek.com/?p=81</guid>
         <pubDate>Wed, 12 Dec 2012 17:47:29 +0000</pubDate>
      </item>
      <item>
         <title>Server Virtualization Part 2 – How Can Server Virtualization Help You</title>
         <link>http://www.animate.com/server-virtualization-part-2-how-can-server-virtualization-help-you/</link>
         <description>This Part 2 of a two-part series on server virtualization – a game changer for anyone involved in IT. Read Part 1. As we discussed earlier, virtualization is the process of breaking the hard link between physical hardware and the operating system. Virtualization adds a software layer between the [&amp;#8230;]</description>
         <guid isPermaLink="false">http://www.animate.com/?p=755</guid>
         <pubDate>Fri, 12 Oct 2012 13:28:21 +0000</pubDate>
         <content:encoded><![CDATA[<p dir="LTR" align="LEFT"><span><em>This Part 2 of a two-part series on server virtualization – a game changer for anyone involved in IT. </em></span><a rel="nofollow" title="Server Virtualization Part 1 &#x002013; A Crash Course on an IT Game Changer" target="_blank" href="http://www.animate.com/server-virtualization-part-1-a-crash-course-on-an-it-game-changer-2/"><span style="text-decoration:underline;">Read Part 1</span></a><em><span>.</span></em></p>
<p dir="LTR" align="LEFT">As we discussed earlier, virtualization is the process of breaking the hard link between physical hardware and the operating system.</p>
<p dir="LTR" align="LEFT">Virtualization adds a software layer between the hardware and the operating system called a &#8220;Hypervisor,&#8221; which breaks the hard link between hardware and software, and allows resources to be evenly shared and consumed more efficiently.</p>
<p dir="LTR" align="LEFT">One of the key benefits of server virtualization is flexibility. And there are many more benefits. Below are a few areas where virtualization has been a game changer for the traditional IT department:</p>
<p dir="LTR" align="LEFT"><strong>1. Adding computer resources</strong></p>
<p dir="LTR" align="LEFT">The process of adding memory to a physical server in a traditional IT department involved going through a lengthy process of submitting the request, getting approval, placing an order, waiting for parts to arrive and then physically installing the memory.</p>
<p dir="LTR" align="LEFT">With virtualization, adding memory means simply editing the configuration of a virtual machine to give it more memory. This can be accomplished in minutes instead of days.</p>
<p dir="LTR" align="LEFT"><strong>2. Increased resiliency against failures</strong></p>
<p dir="LTR" align="LEFT">With virtualization, it is possible to easily protect your environment against host failures.</p>
<p dir="LTR" align="LEFT">If one host that runs virtual machines fails, virtual machines can be configured to automatically fail over to another host in your network. In most cases, this failover process is so seamless you would only notice a brief interruption while the virtual machine starts up on the second host. Compare this to the days you would have to spend waiting for replacement parts to arrive if the physical host that ran your mission-critical database or email server failed.</p>
<p dir="LTR" align="LEFT"><strong>3. Reduced capital and operational costs</strong></p>
<p dir="LTR" align="LEFT">Virtualization allows you to buy fewer servers to achieve your business goals, which reduces your capital expenditures. Fewer servers mean reduced power, cooling and space, as well as lower warranty and maintenance costs, which reduces your operational expenses.</p>
<p dir="LTR" align="LEFT"><span>The concept of virtualization is not new. It has been around almost as long as computers and networks. Although </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www-03.ibm.com/systems/virtualization/index.html">IBM</a></span><span> was an early pioneer of virtualization, VMware has been responsible for permanently changing the IT landscape by bringing virtualization to the masses through its </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www.vmware.com/products/vsphere/">vSphere</a></span><span> line of virtualization products. </span></p>
<p dir="LTR" align="LEFT"><span>Some of the most commonly used virtualization platforms include: VMware’s </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www.vmware.com/products/vsphere/">vSphere</a></span><span>, Microsoft’s </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www.microsoft.com/en-us/server-cloud/hyper-v-server/">Hyper-V</a></span><span>, Red Hat’s </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="https://www.redhat.com/products/virtualization/">KVM</a></span><span> and Citrix’s </span><span style="text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www.xenserver.com/">XenServer</a></span><span>.</span></p>
<p dir="LTR" align="LEFT"><strong>What’s next?</strong></p>
<p dir="LTR" align="LEFT">The explosive growth of virtualization is heralding a new era in computing – the &#8220;cloud computing&#8221; era.</p>
<p dir="LTR" align="LEFT">All cloud platforms use some form of virtualization to ensure performance, scalability, reliability and security. We will be discussing how flexible storage, high compute density servers and scalable networks build cloud platforms in upcoming blog posts.</p>
<p dir="LTR" align="LEFT"><span><strong>Check out Animate’s cloud platform at </strong></span><span style="color:#333333;text-decoration:underline;"><a rel="nofollow" target="_blank" href="http://www.lexcloud.ca/"><span style="color:#333333;text-decoration:underline;"><strong>www.lexcloud.ca</strong></span></a></span><strong><span> and subscribe to our blog today.</span></strong></p>]]></content:encoded>
      </item>
      <item>
         <title>Google Nexus 10 inch with Samsung on the horizon</title>
         <link>http://www.legallygeek.com/technology/google-nexus-10-inch-with-samsung-on-the-horizon/</link>
         <description>I love the Android platform. Its a Geek&amp;#8217;s dream. What I hate about the Android platform is how device manufacturers and carriers butcher the beautiful Android interface and make it look (in some cases) like a child&amp;#8217;s cartoon book. Thats why I love the Nexus line of devices. All the Google Nexus devices thus far ...&lt;a rel=&quot;nofollow&quot; class=&quot;post-readmore&quot; target=&quot;_blank&quot; href=&quot;http://www.legallygeek.com/technology/google-nexus-10-inch-with-samsung-on-the-horizon/&quot;&gt;read more&lt;/a&gt;</description>
         <guid isPermaLink="false">http://www.legallygeek.com/?p=77</guid>
         <pubDate>Wed, 10 Oct 2012 10:50:01 +0000</pubDate>
      </item>
      <item>
         <title>Breaking Bad – Sweet, sour, bitter and smoking hot.</title>
         <link>http://www.focusfolio.com/movies-tv/english/breaking-bad-sweet-sour-bitter-and-smoking-hot/</link>
         <description>Breaking Bad is a critically acclaimed TV Show on AMC. It is currently half way through its fifth and final season. Picture this: Suburban Albuquerque, New Mexico. A regular American family. The father, is a 50 year old high school chemistry...</description>
         <guid isPermaLink="false">http://www.focusfolio.com/?p=373</guid>
         <pubDate>Sat, 06 Oct 2012 13:18:20 +0000</pubDate>
      </item>
      <item>
         <title>How to go to Mars</title>
         <link>http://www.legallygeek.com/space/how-to-go-to-mars/</link>
         <description>If you ever wondered how spacecraft get to Mars and didn&amp;#8217;t know how, wonder no more, this video shows you how. The video follows the Mars Exploration Rover on its journey to the red planet. I love the reaction of the scientists in Mission Control.</description>
         <guid isPermaLink="false">http://www.legallygeek.com/?p=62</guid>
         <pubDate>Wed, 26 Sep 2012 19:46:13 +0000</pubDate>
         <category>Space</category>
      </item>
      <item>
         <title>ownCloud for your Own Cloud</title>
         <link>http://www.legallygeek.com/technology/owncloud-for-your-own-cloud/</link>
         <description>The cloud is everywhere. Everyone has the cloud &amp;#8211; even HP does. Now, you can also have the cloud thing everyone is talking about with ownCloud. ownCloud is an opensource project that was started by Frank Karlitschek as a means to give everyone the means to run their own cloud. This piece of software looks really exciting ...&lt;a rel=&quot;nofollow&quot; class=&quot;post-readmore&quot; target=&quot;_blank&quot; href=&quot;http://www.legallygeek.com/technology/owncloud-for-your-own-cloud/&quot;&gt;read more&lt;/a&gt;</description>
         <guid isPermaLink="false">http://www.legallygeek.com/?p=54</guid>
         <pubDate>Wed, 26 Sep 2012 09:59:04 +0000</pubDate>
      </item>
      <item>
         <title>Server Virtualization Part 1 – A Crash Course on an IT Game Changer</title>
         <link>http://www.animate.com/server-virtualization-part-1-a-crash-course-on-an-it-game-changer-2/</link>
         <description>This is Part 1 of a two-part series on server virtualization – a game changer for anyone involved in IT. Part 2, will go deeper into how it can benefit you. Simply put, server virtualization can be defined as the process of breaking the hard link between physical hardware [&amp;#8230;]</description>
         <guid isPermaLink="false">http://www.animate.com/?p=655</guid>
         <pubDate>Fri, 14 Sep 2012 13:26:02 +0000</pubDate>
         <content:encoded><![CDATA[<p><em>This is Part 1 of a two-part series on server virtualization – a game changer for anyone involved in IT. Part 2, will go deeper into how it can benefit you.</em></p>
<p dir="LTR" align="LEFT">Simply put, server virtualization can be defined as the process of breaking the hard link between physical hardware and the operating system. But what does that mean? To understand the concept of virtualization, let’s consider a traditional desktop.</p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT"><strong>The traditional setup</strong></p>
<p dir="LTR" align="LEFT">There are a few key components that make up a traditional desktop including: the CPU, memory, hard drives, network adapters and display.</p>
<p dir="LTR" align="LEFT">These components constitute the desktop’s physical hardware and can be collectively called &#8220;compute resources.&#8221; On this hardware, we install a compatible operating system to use our favourite apps. The operating system has full access to all the resources the computer has to offer and uses these resources as needed.</p>
<p dir="LTR" align="LEFT">The traditional server works in essentially the same way. The physical hardware that makes up one server is used solely by one operating system that runs one or more applications.</p>
<p dir="LTR" align="LEFT">The diagram below represents the traditional desktop or server:</p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT"> <a rel="nofollow" target="_blank" href="http://www.animate.com/wp-content/uploads/2012/09/virt-12.png"><img class="alignnone size-full wp-image-660" title="Traditional desktop or server" alt="" src="http://www.animate.com/wp-content/uploads/2012/09/virt-12.png" width="441" height="125"/></a></p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT">While it has always been nice to have all computing resources available to the operating system at all times, research has shown time and time again that compute resources are idle for a majority of the time and, even during times of peak load, these resources are not typically maxed out.</p>
<p dir="LTR" align="LEFT">This may not appear to be a problem at a micro level but when scaling up, this creates significant challenges and operational inefficiencies.</p>
<p dir="LTR" align="LEFT">Let’s consider a case where a business requires two servers to run a line of business apps. Let’s assume that these servers have the same compute resources available to them, and that these compute resources were chosen carefully to ensure that when the applications hit peak load, there would not be any drop in performance.</p>
<p dir="LTR" align="LEFT">Exhaustive research has shown that during a typical work week, the average resource consumption would be much lower than 50% of the total capacity of each server. This leads us to a pure mathematical question. If the average resources consumed by two servers are less than 50% of the total capacity, don’t we only need half as many servers to do the job? The answer is a resounding yes, and this scenario is now possible using virtualization.</p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT"><strong>Understanding virtualization</strong></p>
<p dir="LTR" align="LEFT">Virtualization adds a software layer between the hardware and the operating system called a &#8220;Hypervisor,&#8221; which breaks the hard link between hardware and software, and allows resources to be evenly shared and consumed more efficiently.</p>
<p dir="LTR" align="LEFT">This diagram shows what the traditional desktop would look like after it’s been virtualized:</p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT"> <a rel="nofollow" target="_blank" href="http://www.animate.com/wp-content/uploads/2012/09/virt-21.png"><img class="alignnone size-full wp-image-661" title="After" alt="" src="http://www.animate.com/wp-content/uploads/2012/09/virt-21.png" width="424" height="164"/></a></p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT">This next diagram is a logical representation of what a host server running multiple virtual machines would look like. As you can see, you can run multiple virtual machines on a shared host, and you can also have multiple virtual machines running different operating systems with ease.</p>
<p dir="LTR" align="LEFT">Each virtual machine can interact independently with other devices, applications, data, resources and users as though it were a separate physical entity. In essence, a virtual machine is no different from a physical machine. It’s just a more flexible version of the traditional server.</p>
<p>&nbsp;</p>
<p dir="LTR" align="LEFT"> <a rel="nofollow" target="_blank" href="http://www.animate.com/wp-content/uploads/2012/09/virt-31.png"><img class="alignnone size-full wp-image-662" title="Virtual" alt="" src="http://www.animate.com/wp-content/uploads/2012/09/virt-31.png" width="407" height="157"/></a></p>
<p>But there are far more benefits to server virtualization than just flexibility.<strong> Stay tuned for Part 2 of this post, </strong>where we’ll go deeper into the benefits of server virtualization.</p>]]></content:encoded>
      </item>
      <item>
         <title>Neil Armstrong – The Nerdy Engineer</title>
         <link>http://www.focusfolio.com/people/neil-armstrong-the-nerdy-engineer/</link>
         <description>When I was a kid, I was taught that human beings had been to the moon and back a few times. When I grew up, I heard a bunch of people say and make movies about why the moon landings...</description>
         <guid isPermaLink="false">http://www.focusfolio.com/?p=330</guid>
         <pubDate>Tue, 11 Sep 2012 13:50:42 +0000</pubDate>
      </item>
      <item>
         <title>Hey Jude – Lyrics the geek way</title>
         <link>http://www.legallygeek.com/music/hey-jude-lyrics-the-geek-way/</link>
         <description>Everyone knows the Beatles hit &amp;#8216;Hey Jude&amp;#8217;. Here&amp;#8217;s a geek&amp;#8217;s view of this song:</description>
         <guid isPermaLink="false">http://www.legallygeek.com/?p=42</guid>
         <pubDate>Thu, 30 Aug 2012 18:13:46 +0000</pubDate>
         <category>Music</category>
      </item>
      <item>
         <title>The most amazing journey</title>
         <link>http://www.focusfolio.com/automobiles/the-most-amazing-journey/</link>
         <description>Most people who own a Mercedes G-Wagen would drive it to work and back and that&amp;#8217;s probably it. But there was one very lucky G-Wagen that Mr Gunther Holtorf bought that would have an extraordinary life. In 1989, the year...</description>
         <guid isPermaLink="false">http://www.focusfolio.com/?p=242</guid>
         <pubDate>Wed, 25 Jul 2012 01:35:27 +0000</pubDate>
      </item>
      <item>
         <title>Rahul Dravid – The finest brick in the Wall</title>
         <link>http://www.focusfolio.com/people/rahul-dravid-the-finest-brick-in-the-wall/</link>
         <description>Dear Dravid, Many years ago, when you first started playing, Indian Cricket went through one of its worst chapters in its history &amp;#8211; the match fixing scandal. When some of Indian Cricket&amp;#8217;s best players and the team was dragged through...</description>
         <guid isPermaLink="false">http://www.focusfolio.com/?p=202</guid>
         <pubDate>Fri, 09 Mar 2012 11:44:36 +0000</pubDate>
      </item>
      <item>
         <title>Kodak – Lessons learned</title>
         <link>http://www.focusfolio.com/business/kodak-lessons-learned/</link>
         <description>Eastman Kodak has filed for bankruptcy protection. This, barring a massive turnaround, spells the end for one of the icons of early photography. Kodak leaves behind a huge legacy that included many firsts including the first pictures taken by humans on the...</description>
         <guid isPermaLink="false">http://www.focusfolio.com/?p=121</guid>
         <pubDate>Thu, 19 Jan 2012 16:49:58 +0000</pubDate>
      </item>
   </channel>
</rss>
<!-- fe7.yql.bf1.yahoo.com compressed/chunked Thu Oct  1 22:35:35 UTC 2015 -->
