<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>LINHOST.INFO</title>
	
	<link>http://linhost.info</link>
	<description>For My Own Mental Health</description>
	<lastBuildDate>Mon, 30 Jan 2012 03:41:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Linhost" /><feedburner:info uri="linhost" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>Linhost</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>CentOS 6 Has No Network Connectivity ?</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/WrtCcDj28jA/</link>
		<comments>http://linhost.info/2011/12/ip-centos/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 05:53:28 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[IP]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12196</guid>
		<description><![CDATA[This is for those of you who are new to CentOS. By default CentOS 6 will not configure network interfaces on a new installation which means the host will have no network connectivity, we can correct this inconvenience with little effort. Of course this means the user(you) is left with the decision to configure the [...]]]></description>
			<content:encoded><![CDATA[<p>This is for those of you who are new to CentOS.</p>
<p>By default CentOS 6 will not configure network interfaces on a new installation which means the host will have no network connectivity, we can correct this inconvenience with little effort. Of course this means the user(you) is left with the decision to configure the network interface(s) with either a static or dynamically assigned IP addresses.</p>
<p>First of all we need to see the contents of the <strong><em>ifcfg-eth0</em></strong> file.</p>
<pre>cat /etc/sysconfig/network-scripts/ifcfg-eth0</pre>
<pre>
DEVICE=”eth0”
HWADDR=”MAC Address”
NM_CONTROLLED=”yes”
ONBOT=”no”
</pre>
<p>The output above indicates <em><strong>eth0</strong></em> is disabled, this is when you either opt to set a static IP or dynamically assigned IP. </p>
<p>With the text editor of your choice open the <strong>/etc/sysconfig/network-scripts/ifcfg-eth0</strong> and edit as indicated below.</p>
<pre>vi /etc/sysconfig/network-scripts/ifcfg-eth0</pre>
<h3>DHCP Configuration</h3>
<p></p>
<pre>
DEVICE="eth0"
HWADDR=MAC Address*System MAC*
NM_CONTROLLED="no"
ONBOOT="yes"
BOOTPROTO="dhcp"
</pre>
<ul>
<li><em><strong>DEVICE=&#8221;eth0&#8243;</strong></em> &#8211; Name of Network Interface.</li>
<li><strong>HWADDR=MAC Address*System MAC*</strong></em> &#8211; MAC address of Network Interface.</li>
<li><em><strong>NM_CONTROLLED=&#8221;no&#8221;</strong></em> &#8211; Network Manager should disable since it&#8217;s unnecessary in this configuration.</li>
<li><em><strong>ONBOOT=&#8221;yes&#8221; &#8211; </strong></em> &#8211; Means the NIC will be started during boot. </li>
<li><strong><em>BOOTPROTO=&#8221;dhcp&#8221;</em></strong> &#8211; Instructions the OS to find a DHCP server from which to obtain an IP address. The DHCP server will assign all necessary network information including IP address, Netmask, Gateway and DNS server.</li>
</ul>
<p>Restart the network service.</p>
<pre>/etc/init.d/network restart</pre>
<p>or</p>
<pre>service network restart</pre>
<h3>Static Configuration</h3>
<p></p>
<pre>
DEVICE="eth0"
HWADDR=MAC Address*System MAC*
NM_CONTROLLED="no"
ONBOOT="yes"
BOOTPROTO="static"
IPADDR=192.168.x.x.
NETMASK=255.255.255.0.
</pre>
<ul>
<li><strong><em>DEVICE=”eth0″</em></strong> &#8211; Name of Network Interface.</li>
<li><strong><em>HWADDR=MAC Address*System MAC*</em></strong> &#8211; MAC address of Network Interface.</li>
<li><strong><em>NM_CONTROLLED=&#8221;no&#8221;</em></strong> &#8211; Network Manager shoudl be disable since it&#8217;s unnecessary in this configuration.</li>
<li><strong><em>ONBOOT=&#8221;yes&#8221;</em></strong> &#8211; Means the NIC will be started during boot.</li>
<li><strong><em>BOOTPROTO=&#8221;static&#8221;</em></strong> &#8211; IP configuration will be static.</li>
<li><strong><em>IPADDR=192.168.x.x</em></strong> &#8211; System IP address.</li>
<li><strong><em>NETMASK=255.255.255.0</em></strong> &#8211; Network Mask.</li>
</ul>
<h3>Gateway Configuration</h3>
<p><em>*DHCP Users should ignore this step.</em></p>
<p>In order to add a Gateway to our system we need to edit <strong><em>/etc/sysconfig/network</em></strong>.</p>
<p>In order to add the network gateway edit <strong><em>/etc/sysconfig/network</em></strong> and add <strong><em>GATEWAY=192.168.x.x</em></strong>.</p>
<pre>
NETWORKING=yes
HOSTNAME=localhost.localdomain
GATEWAY=192.168.111.1
</pre>
<h3>DNS Configuration</h3>
<p> <em>*DHCP Users should ignore this step.</em></p>
<p>Now we add the DNS server(s) for our host. Edit <strong>/etc/resolv.conf</strong> and add <strong>nameserver 192.168.x.x</strong>.</p>
<pre>nameserver 192.168.111.1</pre>
<p>Restart the network service. This will make sure the changes take effect.</p>
<pre>/etc/init.d/network restart</pre>
<p>or</p>
<pre>service network restart</pre>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/VZGMycUWcr52XqWxPOvyUV7PRig/0/da"><img src="http://feedads.g.doubleclick.net/~a/VZGMycUWcr52XqWxPOvyUV7PRig/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VZGMycUWcr52XqWxPOvyUV7PRig/1/da"><img src="http://feedads.g.doubleclick.net/~a/VZGMycUWcr52XqWxPOvyUV7PRig/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/WrtCcDj28jA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/12/ip-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/12/ip-centos/</feedburner:origLink></item>
		<item>
		<title>Split Files With 7-Zip</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/ng1bhOl1XXY/</link>
		<comments>http://linhost.info/2011/11/split-files-with-7-zip/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 07:01:51 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[7-zip]]></category>
		<category><![CDATA[compression]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12482</guid>
		<description><![CDATA[For some reason I don&#8217;t see many people making use of the file spliting option in the 7-Zip File Manager. By spliiting I mean dividing a larger file into multiple smaller files, later those files can be restored in to its original state. Splitting files is useful in the case where large files have to [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I don&#8217;t see many people making use of the file spliting option in the <a href="http://www.7-zip.org/" target="_blank">7-Zip</a> File Manager. By spliiting I mean dividing a larger file into multiple smaller files, later those files can be restored in to its original state. Splitting files is useful in the case where large files have to be distributed but without the risk of having a large file download fail which would mean starting all over again. </p>
<p><em>This post assumes 7-Zip is already installed.</em></p>
<h3>Benefits:</h3>
<ul>
<li>Did I say no cost, 7-Zip is free.</li>
<li>File sharing sites that impose limits on the size of the files users can upload.</li>
<li>Areas where poor Internet connectivity are common.</li>
<li>For example, a 1GB file is split into 4 x 250MB files. In the event of an interruption it would takes less time to restart a failed 250MB download than it would be for 1GB download.</li>
<li>Better chance of downloading files without the risk of corruption.</li>
<li>Compression or no compression can be specified.</li>
</ul>
<p><a href="https://lh4.googleusercontent.com/-CSRsNgepwxo/TrdMkHGUcoI/AAAAAAAADPU/7qKOnws72gY/s800/7-zip-split-1.png" rel="lightbox[12482]" title="7Zip Feature"><img alt="" src="https://lh4.googleusercontent.com/-CSRsNgepwxo/TrdMkHGUcoI/AAAAAAAADPU/7qKOnws72gY/s800/7-zip-split-1.png" title="7Zip Feature" class="aligncenter wp-image-12592" width="308" height="119" /></a></p>
<h3>Downside:</h3>
<ul>
<li>Some people might not understand the 7-Zip File Manager interface at first.</li>
</ul>
<p><a href="https://lh3.googleusercontent.com/-e7czt27xr08/TrdMkCpbzJI/AAAAAAAADPQ/e8jXImmY43Y/s800/7-zip-split-2.png" rel="lightbox[12482]" title="7Zip Feature"><img alt="" src="https://lh3.googleusercontent.com/-e7czt27xr08/TrdMkCpbzJI/AAAAAAAADPQ/e8jXImmY43Y/s800/7-zip-split-2.png" title="7Zip Feature" class="aligncenter" width="310" height="127" /></a></p>
<blockquote><p>Some files are not worth compressing since they are already compress like in the case of media files, text files on the other hand should definetely be compressed.</p></blockquote>
<blockquote><p>When manually entering the the size of the resulting split place the &#8220;M&#8221; after the number.</p></blockquote>
<h3>File Splitting</h3>
<p>7-Zip File Manager can be easily accessed from the <u>Context Menu</u> by right clicking on the file you wish to work with. Click on <u>Add to archive&#8230;</u>.</p>
<p><a href="https://lh6.googleusercontent.com/-Z0Zl2HOwLtk/TrdMkcJtrsI/AAAAAAAADPg/3LINdj-S5k8/s800/7-zip-split-0.jpg" rel="lightbox[12482]" title="7Zip Context"><img alt="" src="https://lh6.googleusercontent.com/-Z0Zl2HOwLtk/TrdMkcJtrsI/AAAAAAAADPg/3LINdj-S5k8/s400/7-zip-split-0.jpg" title="7Zip Context" class="aligncenter" width="400" height="282" /></a></p>
<p>For testing purposes I make use of 10GB file, I could go with the default split options but I rather specify my own size. In the <u>Split to volume, bytes:</u> box I entered <u>500M</u> which means the 10GB file with be split in to 21 x 500MB. And click on <u>OK</u>.</p>
<p><a href="https://lh6.googleusercontent.com/-f4laWZ2-3jo/TrdMktLMPFI/AAAAAAAADPo/TtuZP-Jbgmk/s800/7-zip-split-3.png" rel="lightbox[12482]" title="7Zip Split Volume"><img alt="" src="https://lh6.googleusercontent.com/-f4laWZ2-3jo/TrdMktLMPFI/AAAAAAAADPo/TtuZP-Jbgmk/s400/7-zip-split-3.png" title="7Zip Split Volume" class="aligncenter" width="400" height="348" /></a></p>
<p>Depending on the type of compression selected(or none) the process may take a considerable amount of time.</p>
<p><a href="https://lh3.googleusercontent.com/-uFtgs0Hj3qg/TrdMkztwlWI/AAAAAAAADP0/nWuffUH3gLs/s800/7-zip-split-4.png" rel="lightbox[12482]" title="7Zip Process"><img alt="" src="https://lh3.googleusercontent.com/-uFtgs0Hj3qg/TrdMkztwlWI/AAAAAAAADP0/nWuffUH3gLs/s400/7-zip-split-4.png" title="7Zip Process" class="aligncenter" width="400" height="241" /></a></p>
<p>The result is one 10GB file split in to 21 Files.</p>
<p><a href="https://lh6.googleusercontent.com/-tWitx6ZgQok/TrdMk39roII/AAAAAAAADPw/L7QnpkQODXQ/s800/7-zip-split-5.png" rel="lightbox[12482]" title="7Zip Split Results"><img alt="" src="https://lh6.googleusercontent.com/-tWitx6ZgQok/TrdMk39roII/AAAAAAAADPw/L7QnpkQODXQ/s800/7-zip-split-5.png" title="7Zip Split Results" class="aligncenter" width="450" height="327" /></a></p>
<h3>File Restore</h3>
<p>Restoring the split files in to its original format is straight forward. Select <u>all files</u> and click on <u>7-Zip > Extract files&#8230;</u></p>
<p><a href="https://lh6.googleusercontent.com/-SDuyOabhuXk/Trd-PFDWDyI/AAAAAAAADQM/WNPm79Tr7Hg/s800/7-zip-split-restore-6.jpg" rel="lightbox[12482]" title="7 Zip Split restore"><img alt="" src="https://lh6.googleusercontent.com/-SDuyOabhuXk/Trd-PFDWDyI/AAAAAAAADQM/WNPm79Tr7Hg/s800/7-zip-split-restore-6.jpg" title="7 Zip Split restore" class="aligncenter" width="544" height="121" /></a></p>
<p>You can either change the path where the resulting file will extracted to or go with the defaults, when done click on <u>OK</u>.</p>
<p><a href="https://lh4.googleusercontent.com/-gc_2uYDheZs/Trd-XzEZ7II/AAAAAAAADQU/pOdou6SUv68/s800/7-zip-split-restore-7.png" rel="lightbox[12482]" title="7 Zip Split Restore"><img alt="" src="https://lh4.googleusercontent.com/-gc_2uYDheZs/Trd-XzEZ7II/AAAAAAAADQU/pOdou6SUv68/s800/7-zip-split-restore-7.png" title="7 Zip Split Restore" class="aligncenter" width="460" height="272" /></a></p>
<p>Depending on the size of the file be prepared to wait for the file to be decompressed and put back together.</p>
<p><a href="https://lh3.googleusercontent.com/-_Rj3-ePewGI/Trd-YvH9JAI/AAAAAAAADQc/0dbZ1_j2k6U/s800/7-zip-split-restore-8.png" rel="lightbox[12482]" title="7 Zip Split Restore"><img alt="" src="https://lh3.googleusercontent.com/-_Rj3-ePewGI/Trd-YvH9JAI/AAAAAAAADQc/0dbZ1_j2k6U/s400/7-zip-split-restore-8.png" title="7 Zip Split Restore" class="aligncenter" width="400" height="241" /></a></p>
<p>Hopefully, this tutorial will proved useful. Leave a comment if necessary just understand that it may take some time before I can answer. </p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/BdIQGqhzVcr4BrtgQqujxpfDDNQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/BdIQGqhzVcr4BrtgQqujxpfDDNQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/BdIQGqhzVcr4BrtgQqujxpfDDNQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/BdIQGqhzVcr4BrtgQqujxpfDDNQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/ng1bhOl1XXY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/11/split-files-with-7-zip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/11/split-files-with-7-zip/</feedburner:origLink></item>
		<item>
		<title>Work With The Right Tools</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/6SZ4shhb2I0/</link>
		<comments>http://linhost.info/2011/10/work-with-the-right-tools/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 06:53:44 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[psp]]></category>
		<category><![CDATA[spudger]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12442</guid>
		<description><![CDATA[Breaking from the habit, I am posting about a different topic. Save your self the regret and buy the right tools for the job. If you are planning to pry open an enclosure then I recommend you spend the extra money and buy your self a Spudger. Don&#8217;t be cheap and try to use a [...]]]></description>
			<content:encoded><![CDATA[<p><em>Breaking from the habit, I am posting about a different topic.</em></p>
<p>Save your self the regret and buy the right tools for the job. If you are planning to pry open an enclosure then I recommend you spend the extra money and buy your self a <a href="http://en.wikipedia.org/wiki/Spudger" target="_blank">Spudger</a>. Don&#8217;t be cheap and try to use a flat-head screw driver otherwise you might damage the plastic.</p>
<p>Just in case any one wonders why would I buy a spudger for, my little sister asked me to see what was wrong with her Sony PSP(games would not load). Turns out the UMD drive is to blame, in certain situations the UMD Drive can become damaged when dropped.</p>
<p>Now, I am just waiting the replacement UMD drive I bought from China to arrive. Despite being in hands of an 8 year old and after three years of service the PSP has no cosmetic damage and until this moment this is the only major problem. BTW: I bought the Spudger from Amazon.</p>
<p>Added some pictures for you enjoyment.</p>
<p><a href="https://lh5.googleusercontent.com/-b5OjjNJrbnQ/TqEMcSjO3GI/AAAAAAAADOU/pw_Is2GllH8/s800/blog-posts-pictures-10-16-11%252520019.JPG" rel="lightbox[12442]" title="Spudger"><img alt="" src="https://lh5.googleusercontent.com/-b5OjjNJrbnQ/TqEMcSjO3GI/AAAAAAAADOU/pw_Is2GllH8/s400/blog-posts-pictures-10-16-11%252520019.JPG" title="Spudger" class="aligncenter wp-image-12594" width="400" height="225" /></a></p>
<p><a href="https://lh4.googleusercontent.com/-b7KvtHE5jac/TqEMaFH-2bI/AAAAAAAADOI/KMJo3-1msPM/s800/blog-posts-pictures-10-16-11%252520018.JPG" rel="lightbox[12442]" title="Spudger 1"><img alt="" src="https://lh4.googleusercontent.com/-b7KvtHE5jac/TqEMaFH-2bI/AAAAAAAADOI/KMJo3-1msPM/s400/blog-posts-pictures-10-16-11%252520018.JPG" title="Spudger 1" class="aligncenter" width="400" height="225" /></a></p>
<p><a href="https://lh3.googleusercontent.com/-n-RThVRX8do/TqEMZzuKQpI/AAAAAAAADOE/wWU0JXNk0G0/s800/blog-posts-pictures-10-16-11%252520020.JPG" rel="lightbox[12442]" title="Spudger 2"><img alt="" src="https://lh3.googleusercontent.com/-n-RThVRX8do/TqEMZzuKQpI/AAAAAAAADOE/wWU0JXNk0G0/s400/blog-posts-pictures-10-16-11%252520020.JPG" title="Spudger 2" class="aligncenter" width="400" height="225" /></a></p>
<p><a href="https://lh6.googleusercontent.com/-x_lXZWj2NwU/TqEMf6pB-6I/AAAAAAAADOc/um-3qSlZCkQ/s800/blog-posts-pictures-10-16-11%252520021.JPG" rel="lightbox[12442]" title="Spudger 3"><img alt="" src="https://lh6.googleusercontent.com/-x_lXZWj2NwU/TqEMf6pB-6I/AAAAAAAADOc/um-3qSlZCkQ/s400/blog-posts-pictures-10-16-11%252520021.JPG" title="Spudger 3" class="aligncenter" width="400" height="225" /></a></p>
<p><a href="https://lh4.googleusercontent.com/-KVcwQwhvztE/TqERHqakCPI/AAAAAAAADO8/D1U5UdSOFlc/s800/blog-posts-pictures-10-16-11%252520025.JPG" rel="lightbox[12442]" title="Pink PSP"><img alt="" src="https://lh4.googleusercontent.com/-KVcwQwhvztE/TqERHqakCPI/AAAAAAAADO8/D1U5UdSOFlc/s400/blog-posts-pictures-10-16-11%252520025.JPG" title="Pink PSP" class="aligncenter" width="400" height="300" /></a></p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/D-GUJQkbNo7I4Fts72K8og-mLVk/0/da"><img src="http://feedads.g.doubleclick.net/~a/D-GUJQkbNo7I4Fts72K8og-mLVk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/D-GUJQkbNo7I4Fts72K8og-mLVk/1/da"><img src="http://feedads.g.doubleclick.net/~a/D-GUJQkbNo7I4Fts72K8og-mLVk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/6SZ4shhb2I0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/10/work-with-the-right-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/10/work-with-the-right-tools/</feedburner:origLink></item>
		<item>
		<title>Time For A New NAS</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/jkgZrd6COl4/</link>
		<comments>http://linhost.info/2011/09/time-for-a-new-nas/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:05:48 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12404</guid>
		<description><![CDATA[I thought I wouldn&#8217;t have to say this for years to come, but I&#8217;ve reached the conclusion that after 3 years of service the time to replace my current NAS has come, for sake of reference here is what I currently have: Via C3 Windows Server 2003 512MB of RAM 2TB Storage / 1TB Usable [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I wouldn&#8217;t have to say this for years to come, but I&#8217;ve reached the conclusion that after 3 years of service the time to replace my current NAS has come, for sake of reference here is what I currently have:</p>
<ul>
<li>Via C3</li>
<li>Windows Server 2003</li>
<li>512MB of RAM</li>
<li>2TB Storage / 1TB Usable</li>
</ul>
<p>It&#8217;s not the hardware that I find to be the problem, but the lack of expansion that&#8217;s holding me back. If you look at the picture below you can see the board currently in my NAS. For starters I am limited to a single 10/100 onboard NIC, there is no option to upgrade to SATA only IDE, while there is one PCI slot available its currently occupied by a PCI SATA controller meaning its not possible to upgrade to gigabit speeds.</p>
<p><a href="https://lh3.googleusercontent.com/-7evBXMzgLE4/Tn_4x_S0YhI/AAAAAAAADN8/rgO9KNlJ-ac/s800/VIAC3Board.png" rel="lightbox[12404]" title="VIA C3 Board"><img alt="" src="https://lh3.googleusercontent.com/-7evBXMzgLE4/Tn_4x_S0YhI/AAAAAAAADN8/rgO9KNlJ-ac/s288/VIAC3Board.png" title="VIA C3 Board" class="aligncenter wp-image-12596" width="262" height="288" /></a></p>
<h3>CPU:</h3>
<p> While the onboard VIA C3 CPU is no monster its certainly capable of handling most tasks: File server, web server. But there is one service I don&#8217;t even want to try and run with the current limitations, SCSI Target. Since I would not be making of a TOE NIC for the iSCSI traffic, all calculations would have to be performed in CPU which would take a toll on performance and nothing good would come out of it. Although I thought about running software RAID I opted not to because of the possible added load on the CPU.</p>
<h3>STORAGE:</h3>
<p> Another serious limitation is storage capacity, because of its age the board lacks SATA ports leaving me with IDE as the default option, good luck trying to find a 1TB IDE hard drive. The only possible expansion came from the PCI slot in which I installed a PCI SATA controller and connected two 1TB SATA drives, only 1TB is usable because the second drive contains a copy of the first.</p>
<h3>RAM:</h3>
<p> Currently running with 512MB, but can be upgraded to 1GB. I don&#8217;t see the point of upgrading.</p>
<h3>Networking:</h3>
<p> The board comes with a 10/100 NIC, the only expansion port is being used by the PCI SATA controller. Its either a 10/100/1000 NIC or a PCI SATA controller.</p>
<p>I thought of using an external USB drives or an eSATA enclosure but that would have been a temporary measure. Instead I&#8217;ve started to look for a replacement solution something that is capable, with the possibility for future expansion and with enough resources to run iSCSI, SMB, RAID, SSH for tunneling, and expansion slots.</p>
<ul>
<li>Either an Intel or AMD CPU</li>
<li>At least 1GB of RAM</li>
<li>At least 4 drives</li>
<li>Gigabit NIC</li>
<li>PCI-E would be nice</li>
</ul>
<p>At the moment there are two front runners one is a semi-complete solution: QNAP TS-410 ($450.00) and the HP Micro Server ($350.00) which would require me to once again provide the OS among other things.</p>
<p>I like the convenience of QNAP and the favorable reviews on what appears to be a solid product that comes with many useful features like iSCSI, HTTP server, SMB. But the nerd in me calls out for the HP Micro Server.</p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/ceIQn0EWoE9g3lUUXeFO0hA9eRQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/ceIQn0EWoE9g3lUUXeFO0hA9eRQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ceIQn0EWoE9g3lUUXeFO0hA9eRQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/ceIQn0EWoE9g3lUUXeFO0hA9eRQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/jkgZrd6COl4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/09/time-for-a-new-nas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/09/time-for-a-new-nas/</feedburner:origLink></item>
		<item>
		<title>How To Backup And Restore The MBR</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/imr7DJJQMZA/</link>
		<comments>http://linhost.info/2011/09/how-to-backup-and-restore-the-mbr/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 09:36:26 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mbr]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12359</guid>
		<description><![CDATA[You are a geek therefore you can&#8217;t trust your self to not render a system unbootable. Specially if you are about to boot from more than one operating system which is done incorrectly could result in getting a blank screen. BTW: The MBR holds partition data and Operating System boot essential data. Therefore, it&#8217;s essential [...]]]></description>
			<content:encoded><![CDATA[<p>You are a geek therefore you can&#8217;t trust your self to not render a system unbootable. Specially if you are about to boot from more than one operating system which is done incorrectly could result in getting a blank screen. BTW: The MBR holds partition data and Operating System boot essential data. Therefore, it&#8217;s essential to know how to backup the MBR, fortunately we can backup with a few simple steps and only using free tools.</p>
<blockquote><p>MBR = Master Boot Record</p></blockquote>
<p>This tutorial uses a Live CD which includes the utility know as <strong>dd</strong> with can be used to copy entire drives or just sections of it.</p>
<p>First of all you should boot in to your Linux environment and mount a second drive where we can store the MBR backup.</p>
<blockquote><p>Do not save the backup file in the same drive from which you are making the backup.</p></blockquote>
<p>Create a directory.</p>
<pre>mkdir mountusb</pre>
<p>Use the <strong>ls</strong> command to identify the second drive. In my case I have a SATA drive and a USB drive, the SATA drive is always assigned the first letter of the alphabet in this case it&#8217;s named <strong>sda</strong> and the USB drive was assigned the name <strong>sdb</strong>.</p>
<pre>root@PartedMagic:~# ls /dev/sd*
/dev/sda  /dev/sda1  /dev/sdb  /dev/sdb1</pre>
<p>You can&#8217;t mount the drive itself, instead you have to mount partitions. In this case I will be mounting a USB drive which is where I will be storing the MBR backup, <em>remember to mount the partition not the drive</em>.</p>
<pre>mount /dev/sdb1 mountusb</pre>
<p>And now we back up the <strong>MBR</strong> aka the first 512 bytes. </p>
<pre>dd if=/dev/sda count=1 bs=512 > mountusb/sda.mbr</pre>
<ul>
<li><strong>mountusb -</strong> Is the previously created directory</li>
<li><strong>sda.mbr -</strong> Represents the actual backup</li>
</ul>
<p>Restoring the <strong>MBR</strong> follows similar steps, you first need to mount the drive where the MBR was backup to and use the <strong>dd</strong> command to restore the backup to the desired drive.</p>
<pre>dd if=mountusb/sda.mbr of=/dev/sda</pre>
<p>Now that you know how to backup the MBR go ahead and start playing with multiple operating system, if at a latter time you decided to remove them you can always revert to the original MBR with a single command. Thanks for reading.</p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/qVhPM77J8LaSy4TRzyuaE3bALSI/0/da"><img src="http://feedads.g.doubleclick.net/~a/qVhPM77J8LaSy4TRzyuaE3bALSI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qVhPM77J8LaSy4TRzyuaE3bALSI/1/da"><img src="http://feedads.g.doubleclick.net/~a/qVhPM77J8LaSy4TRzyuaE3bALSI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/imr7DJJQMZA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/09/how-to-backup-and-restore-the-mbr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/09/how-to-backup-and-restore-the-mbr/</feedburner:origLink></item>
		<item>
		<title>Download The Windows 8 Developer Preview</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/925sKik2lNg/</link>
		<comments>http://linhost.info/2011/09/download-the-windows-8-developer-preview/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 08:48:16 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12314</guid>
		<description><![CDATA[If you are looking for something to download then why not download the Windows 8 Developer Preview and have a taste of the next desktop OS from Microsoft. Keep in mind this is a pre-beta which means you should expect bug and instability. Recommended hardware is similar to what you should already using with either [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for something to download then why not download the <a href="http://msdn.microsoft.com/en-us/windows/apps/br229516" target="_blank">Windows 8 Developer Preview</a> and have a taste of the next desktop OS from Microsoft. Keep in mind this is a pre-beta which means you should expect bug and instability. </p>
<p>Recommended hardware is similar to what you should already using with either Vista or Windows 7:</p>
<ol>
<li>1 gigahertz (GHz) or faster 32-bit (x86) or 64-bit (x64) processor</li>
<li>1 gigabyte (GB) RAM (32-bit) or 2 GB RAM (64-bit)</li>
<li>16 GB available hard disk space (32-bit) or 20 GB (64-bit)</li>
<li>DirectX 9 graphics device with WDDM 1.0 or higher driver</li>
<li>Taking advantage of touch input requires a screen that supports multi-touch</li>
</ol>
<p>Use the following links to download the version you find adequate:</p>
<p><strong>Windows Developer Preview with developer tools English, 64-bit (x64)</strong> 4.8GB<br />
<strong>SHA-1 Hash:</strong> 6FE9352FB59F6D0789AF35D1001BD4E4E81E42AF<br />
<a href="http://wdp.dlws.microsoft.com/WDPDL/9B8DFDFF736C5B1DBF956B89D8A9D4FD925DACD2/WindowsDeveloperPreview-64bit-English-Developer.iso" target="_blank">Download</a></p>
<p><strong>Windows Developer Preview with developer tools English, 64-bit (x64)</strong> 3.6GB<br />
<strong>Sha 1 hash</strong> &#8211; 6FE9352FB59F6D0789AF35D1001BD4E4E81E42AF<br />
<a href="http://wdp.dlws.microsoft.com/WDPDL/9B8DFDFF736C5B1DBF956B89D8A9D4FD925DACD2/WindowsDeveloperPreview-64bit-English-Developer.iso" target="_blank">Download</a></p>
<p><strong>Windows Developer Preview English, 32-bit (x86)</strong> 2.8GB<br />
<strong>SHA-1 Hash:</strong> 4E0698BBABE01ED27582C9FC16AD21C4422913CC<br />
<a href="http://wdp.dlws.microsoft.com/WDPDL/9B8DFDFF736C5B1DBF956B89D8A9D4FD925DACD2/WindowsDeveloperPreview-32bit-English.iso" target="_blank">Download</a> </p>
<p>Don&#8217;t forget to watch the <a href="http://www.buildwindows.com/" target="_blank">Microsoft preview of Windows Server 8</a> @ 9am Pacific time, Sept. 14.</p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/YFytvD8kq4SFQ0X7RDjgBUF7Mm0/0/da"><img src="http://feedads.g.doubleclick.net/~a/YFytvD8kq4SFQ0X7RDjgBUF7Mm0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YFytvD8kq4SFQ0X7RDjgBUF7Mm0/1/da"><img src="http://feedads.g.doubleclick.net/~a/YFytvD8kq4SFQ0X7RDjgBUF7Mm0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/925sKik2lNg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/09/download-the-windows-8-developer-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/09/download-the-windows-8-developer-preview/</feedburner:origLink></item>
		<item>
		<title>Change The Default Text Editor In WinSCP</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/NCvCA7X4LCM/</link>
		<comments>http://linhost.info/2011/09/change-the-default-text-editor-in-winscp-2/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 01:28:42 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[intype]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[winscp]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12214</guid>
		<description><![CDATA[I consider WinSCP to be the best free SFTP, SCP and FTP client for Windows but like other similar clients the bundled text editor is not what I would consider to be the best or adequate for the type of work I do. In this post I will describe the necessary steps to replace the [...]]]></description>
			<content:encoded><![CDATA[<p>I consider WinSCP to be the best free SFTP, SCP and FTP client for Windows but like other similar clients the bundled text editor is not what I would consider to be the best or adequate for the type of work I do. </p>
<p>In this post I will describe the necessary steps to replace the default text editor WinSCP uses whenever a file is opened, instead of executing the default text editor the replacement editor will be executed. Although this tutorial uses Intype as the third party text editor of choice you can substitute for the text editor of your choice.</p>
<p>Start WinSCP and make sure the <strong>Advanced options</strong> check box is checked.</p>
<p><a href="https://lh6.googleusercontent.com/-9o9qS8h1ZN0/TmSVrR04lVI/AAAAAAAADMc/k9sWrWZf8BE/s800/winscp-0.png" rel="lightbox[12214]" title="WinSCP 0"><img alt="" src="https://lh6.googleusercontent.com/-9o9qS8h1ZN0/TmSVrR04lVI/AAAAAAAADMc/k9sWrWZf8BE/s400/winscp-0.png" title="WinSCP 0" class="aligncenter" width="400" height="283" /></a></p>
<p>Click on <strong>Preferences</strong>.</p>
<p><a href="https://lh4.googleusercontent.com/-a6kGtsSkMFY/TmSVt7YgPTI/AAAAAAAADMg/qQ30IHfJEgA/s800/winscp-1.png" rel="lightbox[12214]" title="WinSCP 1"><img alt="" src="https://lh4.googleusercontent.com/-a6kGtsSkMFY/TmSVt7YgPTI/AAAAAAAADMg/qQ30IHfJEgA/s400/winscp-1.png" title="WinSCP 1" class="aligncenter" width="400" height="283" /></a></p>
<p>Once again click on the <strong>Preferences&#8230;</strong> box.</p>
<p><a href="https://lh4.googleusercontent.com/-W0V8YQsQpAA/TmSVvLHPNkI/AAAAAAAADMk/IcmefU6jvVU/s800/winscp-2.png" rel="lightbox[12214]" title="WinSCP 2"><img alt="" src="https://lh4.googleusercontent.com/-W0V8YQsQpAA/TmSVvLHPNkI/AAAAAAAADMk/IcmefU6jvVU/s400/winscp-2.png" title="WinSCP 2" class="aligncenter" width="400" height="283" /></a></p>
<p>Click on <strong>Editors</strong>.</p>
<p><a href="https://lh6.googleusercontent.com/-YCHfyBugIRA/TmSVwpHzQ0I/AAAAAAAADMo/yviagTUn_fQ/s800/winscp-3.png" rel="lightbox[12214]" title="WinSCP 3"><img alt="" src="https://lh6.googleusercontent.com/-YCHfyBugIRA/TmSVwpHzQ0I/AAAAAAAADMo/yviagTUn_fQ/s400/winscp-3.png" title="WinSCP 3" class="aligncenter" width="400" height="331" /></a></p>
<p>Click on the <strong>Add &#8230;</strong> box.</p>
<p><a href="https://lh6.googleusercontent.com/-SSRusK_IfrQ/TmSV3RgUtbI/AAAAAAAADMs/ua7wRBDAxbU/s800/winscp-4.png" rel="lightbox[12214]" title="WinSCP 4"><img alt="" src="https://lh6.googleusercontent.com/-SSRusK_IfrQ/TmSV3RgUtbI/AAAAAAAADMs/ua7wRBDAxbU/s400/winscp-4.png" title="WinSCP 4" class="aligncenter" width="400" height="331" /></a></p>
<p>Select <strong>External editor:</strong> and <strong>Browse&#8230;</strong> to the path where the replecement text editor resides in the case of Intype the path is <strong>C:\Program Files (x86)\Intype\intype.exe</strong>.</p>
<p><a href="https://lh5.googleusercontent.com/-1Ex1ERKY9Lg/TmSV4TYjH1I/AAAAAAAADMw/swu1E0BFO7s/s800/winscp-5.png" rel="lightbox[12214]" title="WinSCP 5"><img alt="" src="https://lh5.googleusercontent.com/-1Ex1ERKY9Lg/TmSV4TYjH1I/AAAAAAAADMw/swu1E0BFO7s/s400/winscp-5.png" title="WinSCP 5" class="aligncenter" width="400" height="356" /></a></p>
<p><a href="https://lh4.googleusercontent.com/-9l9DaQUHNug/TmSV53swWUI/AAAAAAAADM0/Xu4DhnWxHQg/s800/winscp-6.png" rel="lightbox[12214]" title="WinSCP"><img alt="" src="https://lh4.googleusercontent.com/-9l9DaQUHNug/TmSV53swWUI/AAAAAAAADM0/Xu4DhnWxHQg/s400/winscp-6.png" title="WinSCP" class="aligncenter" width="400" height="296" /></a></p>
<p>WinSCP will format the path for you!. Click on <strong>OK</strong> to save the changes.</p>
<p><a href="https://lh6.googleusercontent.com/-_2AQZvX2z6o/TmSV7YnIR3I/AAAAAAAADM4/5JkSucZQjsc/s800/winscp-7.png" rel="lightbox[12214]" title="WinSCP 7"><img alt="" src="https://lh6.googleusercontent.com/-_2AQZvX2z6o/TmSV7YnIR3I/AAAAAAAADM4/5JkSucZQjsc/s400/winscp-7.png" title="WinSCP 7" class="aligncenter" width="400" height="356" /></a></p>
<p>In my case the text editor was recognized as <strong>Intype</strong>, click on it to highlight it. Click on the <strong>Up</strong> button till the new text editor is at the top making it the default choice.</p>
<p><a href="https://lh6.googleusercontent.com/-x7QHsDqMC2M/TmSV8UX8MYI/AAAAAAAADM8/FD13Fl1zWTQ/s800/winscp-8.png" rel="lightbox[12214]" title="WinSCP 8"><img alt="" src="https://lh6.googleusercontent.com/-x7QHsDqMC2M/TmSV8UX8MYI/AAAAAAAADM8/FD13Fl1zWTQ/s400/winscp-8.png" title="WinSCP 8" class="aligncenter" width="400" height="331" /></a></p>
<p>Click on the <strong>OK</strong> button to save.</p>
<p><a href="https://lh5.googleusercontent.com/-eqZe-qGTPyw/TmSV-wA5UcI/AAAAAAAADNA/9NeqR0KHNoQ/s800/winscp-9.png" rel="lightbox[12214]" title="WinSCP"><img alt="" src="https://lh5.googleusercontent.com/-eqZe-qGTPyw/TmSV-wA5UcI/AAAAAAAADNA/9NeqR0KHNoQ/s400/winscp-9.png" title="WinSCP" class="aligncenter" width="400" height="331" /></a></p>
<p>From now on whenever you edit a file WinSCP will execute the replacement text editor instead of the bundled one.</p>
<p><a href="https://lh6.googleusercontent.com/-3ke4D-sFJlw/TmSZrDVVpPI/AAAAAAAADNg/HR5D4ZHnrFg/s800/WinSCP-Intype.jpg" rel="lightbox[12214]" title="WinSCP and Intype"><img alt="" src="https://lh6.googleusercontent.com/-3ke4D-sFJlw/TmSZrDVVpPI/AAAAAAAADNg/HR5D4ZHnrFg/s400/WinSCP-Intype.jpg" title="WinSCP and Intype" class="aligncenter" width="400" height="215" /></a></p>
<p>Feel free to leave comments below.</p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/eGJXCRthQs0bfdQSxrs3UBzkRKQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/eGJXCRthQs0bfdQSxrs3UBzkRKQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eGJXCRthQs0bfdQSxrs3UBzkRKQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/eGJXCRthQs0bfdQSxrs3UBzkRKQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/NCvCA7X4LCM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/09/change-the-default-text-editor-in-winscp-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/09/change-the-default-text-editor-in-winscp-2/</feedburner:origLink></item>
		<item>
		<title>Windows 7 Network Share Trust</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/sOgf36PCAyw/</link>
		<comments>http://linhost.info/2011/08/windows-7-network-share-trust/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 08:27:10 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12159</guid>
		<description><![CDATA[Windows 7 improved various aspects of security over previous version of the Microsoft operating system, while improvements are usually well received some of the new security aspects resulted in Windows no longer trusting my network share despite being in my LAN which is already trusted and not in the Internet where I have no control. [...]]]></description>
			<content:encoded><![CDATA[<p>Windows 7 improved various aspects of security over previous version of the Microsoft operating system, while improvements are usually well received some of the new security aspects resulted in Windows no longer trusting my network share despite being in my LAN which is already trusted and not in the Internet where I have no control.</p>
<p><a href="https://lh6.googleusercontent.com/-JYA0V-pyVng/TkofHiohcwI/AAAAAAAADLE/NB00Or6mX3g/s800/Trusted_Untrusted_Zone.png" rel="lightbox[12159]" title="Network Diagram"><img alt="" src="https://lh6.googleusercontent.com/-JYA0V-pyVng/TkofHiohcwI/AAAAAAAADLE/NB00Or6mX3g/s400/Trusted_Untrusted_Zone.png" title="Network Diagram" class="aligncenter" width="400" height="206" /></a></p>
<p>While is not the end of the world, the changes do make it annoying if you have to download multiple files from a network share. This is what I have to put up with every time I have to download a file:</p>
<p><a href="https://lh3.googleusercontent.com/-JklWV6jUni4/TkofaIPA1HI/AAAAAAAADLI/Te45XGKr9p8/s800/windows-security.png" rel="lightbox[12159]" title="Windows Security"><img alt="" src="https://lh3.googleusercontent.com/-JklWV6jUni4/TkofaIPA1HI/AAAAAAAADLI/Te45XGKr9p8/s800/windows-security.png" title="Windows Security" class="aligncenter" width="366" height="226" /></a></p>
<h3>The Solution</h3>
<p></p>
<p>Fortunately, the fix is an easy one, and it only requires adding the IP address of the network share as a trusted one.</p>
<p>Start by going to the <strong>Control Panel</strong>.</p>
<p><a href="https://lh6.googleusercontent.com/-jepTWJke8xo/Tkokyl6RD4I/AAAAAAAADL4/hljqYcGhd3o/s800/w7-sec-0.png" rel="lightbox[12159]" title="W7 Security"><img alt="" src="https://lh6.googleusercontent.com/-jepTWJke8xo/Tkokyl6RD4I/AAAAAAAADL4/hljqYcGhd3o/s400/w7-sec-0.png" title="W7 Security" class="aligncenter" width="349" height="400" /></a></p>
<p>And click on <strong>Internet Options</strong>.</p>
<p><a href="https://lh5.googleusercontent.com/-g80PIlC-qTs/TkokzMgeEiI/AAAAAAAADL8/beMw6W4U4h4/s800/w7-sec-1.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh5.googleusercontent.com/-g80PIlC-qTs/TkokzMgeEiI/AAAAAAAADL8/beMw6W4U4h4/s800/w7-sec-1.png" title="Windows 7 Security" class="aligncenter" width="440" height="349" /></a></p>
<p>In the <em>Internet Properties</em> window select <strong>Local intranet</strong>.</p>
<p><a href="https://lh4.googleusercontent.com/-QxRGjy8USyg/Tkokz5LK4ZI/AAAAAAAADMA/E-NtO4N11rk/s800/w7-sec-2.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh4.googleusercontent.com/-QxRGjy8USyg/Tkokz5LK4ZI/AAAAAAAADMA/E-NtO4N11rk/s800/w7-sec-2.png" title="Windows 7 Security" class="aligncenter" width="423" height="541" /></a></p>
<p>Click on <strong>Sites</strong>.</p>
<p><a href="https://lh6.googleusercontent.com/-qf4YQV2GkMY/Tkok1aJu7HI/AAAAAAAADME/H6hgXOtGPM4/s800/w7-sec-3.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh6.googleusercontent.com/-qf4YQV2GkMY/Tkok1aJu7HI/AAAAAAAADME/H6hgXOtGPM4/s800/w7-sec-3.png" title="Windows 7 Security" class="aligncenter" width="423" height="541" /></a></p>
<p>And in the <strong>Advanced</strong> button.</p>
<p><a href="https://lh5.googleusercontent.com/-MPI9HK_p4dY/Tkok5GUWnHI/AAAAAAAADMI/NQiVSMjfHPk/s800/w7-sec-4.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh5.googleusercontent.com/-MPI9HK_p4dY/Tkok5GUWnHI/AAAAAAAADMI/NQiVSMjfHPk/s800/w7-sec-4.png" title="Windows 7 Security" class="aligncenter" width="414" height="233" /></a></p>
<p>Enter the IP address of your NAS or network server and click on <strong>Add</strong>.</p>
<p><a href="https://lh4.googleusercontent.com/-6DOy552sTxE/Tkok6ZjEtyI/AAAAAAAADMM/H6pSICFmjp4/s800/w7-sec-5.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh4.googleusercontent.com/-6DOy552sTxE/Tkok6ZjEtyI/AAAAAAAADMM/H6pSICFmjp4/s800/w7-sec-5.png" title="Windows 7 Security" class="aligncenter" width="394" height="348" /></a></p>
<p>Click on <strong>OK</strong>.</p>
<p><a href="https://lh5.googleusercontent.com/-vhsPtHFSm5c/Tkok7t44e9I/AAAAAAAADMQ/exNi8Th4F1c/s800/w7-sec-6.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh5.googleusercontent.com/-vhsPtHFSm5c/Tkok7t44e9I/AAAAAAAADMQ/exNi8Th4F1c/s800/w7-sec-6.png" title="Windows 7 Security" class="aligncenter" width="414" height="233" /></a></p>
<p>One last time click on <strong>OK</strong>.</p>
<p><a href="https://lh3.googleusercontent.com/-zpNi9cjeZ9A/Tkok9RL3WCI/AAAAAAAADMU/0Y0gbLGW5BQ/s800/w7-sec-7.png" rel="lightbox[12159]" title="Windows 7 Security"><img alt="" src="https://lh3.googleusercontent.com/-zpNi9cjeZ9A/Tkok9RL3WCI/AAAAAAAADMU/0Y0gbLGW5BQ/s800/w7-sec-7.png" title="Windows 7 Security" class="aligncenter" width="423" height="541" /></a></p>
<p>From now on the network share will not be treated as an untrusted source and you will not be presented with the warning any more. However, if you add another network share with a different IP address you will need to follow the same steps all over again.</p>
<h3>Links:</h3>
<p><a href="http://social.technet.microsoft.com/Forums/en-US/w7itprosecurity/thread/35ca8f9c-5e69-4b7f-a002-0d72fa0dc14b/" title="Techent.Microsoft.com" target="_blank"></a></p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/Ypuv7bcWpIAgh9qesxP3s5CqfTs/0/da"><img src="http://feedads.g.doubleclick.net/~a/Ypuv7bcWpIAgh9qesxP3s5CqfTs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Ypuv7bcWpIAgh9qesxP3s5CqfTs/1/da"><img src="http://feedads.g.doubleclick.net/~a/Ypuv7bcWpIAgh9qesxP3s5CqfTs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/sOgf36PCAyw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/08/windows-7-network-share-trust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/08/windows-7-network-share-trust/</feedburner:origLink></item>
		<item>
		<title>VMware: Changes To The vRAM Licensing Model</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/-7NYMVGk2t4/</link>
		<comments>http://linhost.info/2011/08/vmware-changes-to-the-vram-licensing-model/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 08:13:28 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=12057</guid>
		<description><![CDATA[After stirring some emotions VMware has made changes to the vSphere 5 licensing model, the new changes should dissipate the bad rep VMware received for making the unwelcome changes. I can recall conversing with other IT Pros where they expressed interest in competing virtualization platforms because they found the changes to be unfriendly to their [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://blogs.vmware.com/rethinkit/2011/08/changes-to-the-vram-licensing-model-introduced-on-july-12-2011.html" target="_blank">stirring some emotions</a> VMware has made changes to the vSphere 5 licensing model, the new changes should dissipate the bad rep VMware received for making the unwelcome changes. I can recall conversing with other IT Pros where they expressed interest in competing virtualization platforms because they found the changes to be unfriendly to their operations and budget.</p>
<p>The chart below should help explain the new vRAM increases to the licensing model:</p>
<p><a href="https://lh3.googleusercontent.com/-7w7pxm0REwk/TjpPm3n93oI/AAAAAAAADKk/JUDL-Hv70d4/s800/vRAM.png" rel="lightbox[12057]" title="vRAM"><img alt="" src="https://lh3.googleusercontent.com/-7w7pxm0REwk/TjpPm3n93oI/AAAAAAAADKk/JUDL-Hv70d4/s400/vRAM.png" title="vRAM" class="aligncenter" width="400" height="319" /></a></p>
<h3>My Take</h3>
<p></br></p>
<p>It&#8217;s always great to see a company take action when customers express disapproval of their actions. Users of the free VMware free Hypervisor will be specially happy after the new changes.</p>
<p>Now we can get back to running the Matrix on ESXi.</p>
<p>For more information visit the link below:</p>
<p><a href="http://blogs.vmware.com/rethinkit/2011/08/changes-to-the-vram-licensing-model-introduced-on-july-12-2011.html" target="_blank">Changes to the vRAM licensing model introduced on July 12, 2011</a></p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/R7xKpue-ChdjPM389sUs1YzBYsk/0/da"><img src="http://feedads.g.doubleclick.net/~a/R7xKpue-ChdjPM389sUs1YzBYsk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/R7xKpue-ChdjPM389sUs1YzBYsk/1/da"><img src="http://feedads.g.doubleclick.net/~a/R7xKpue-ChdjPM389sUs1YzBYsk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/-7NYMVGk2t4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/08/vmware-changes-to-the-vram-licensing-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/08/vmware-changes-to-the-vram-licensing-model/</feedburner:origLink></item>
		<item>
		<title>Schedule A Shutdown In Windows</title>
		<link>http://feedproxy.google.com/~r/Linhost/~3/P53zKwQo3BI/</link>
		<comments>http://linhost.info/2011/07/schedule-a-shutdown-in-windows/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 05:25:50 +0000</pubDate>
		<dc:creator>Luis Ventura</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://linhost.info/?p=11932</guid>
		<description><![CDATA[Useful tip if you need to schedule a Windows PC to shutdown after a certain amount of time. Thanks to the Shutdown command we can either shutdown or restart a Windows PC after a pre-determined amount of time. Shutdown is an easy command to understand and use, a basic yet useful example would be shutting [...]]]></description>
			<content:encoded><![CDATA[<p>Useful tip if you need to schedule a Windows PC to shutdown after a certain amount of time. Thanks to the <strong><em>Shutdown</em></strong> command we can either shutdown or restart a Windows PC after a pre-determined amount of time. Shutdown is an easy command to understand and use, a basic yet useful example would be shutting the system after 60 minutes.  </p>
<pre>
shutdown /s /t 3600
</pre>
<p>Brief explanation of the command above:</p>
<p><strong>/s</strong> &#8211; Shutdown the computer.<br />
<strong>/t</strong> &#8211; Set the time-out before shutdown to xxx seconds.</p>
<p>60 seconds X 60 minutes = 3600</p>
<p>After the command is entered you should see an alert similar to the one below.</p>
<p><a href="https://lh5.googleusercontent.com/-XhXZ6kw6Rlo/Ti-fzXf89NI/AAAAAAAADKI/s8VPBlb3OjY/s800/shutdown-s-t-3600.png" rel="lightbox[11932]" title="shutdown-s-t-3600"><img alt="" src="https://lh5.googleusercontent.com/-XhXZ6kw6Rlo/Ti-fzXf89NI/AAAAAAAADKI/s8VPBlb3OjY/s800/shutdown-s-t-3600.png" title="shutdown-s-t-3600" class="aligncenter" width="362" height="158" /></a></p>
<p>To cancel the shutdown all you have to do is enter the <strong><em>/a</em></strong> parameter after the shutdown command.</p>
<p><a href="https://lh6.googleusercontent.com/-smrjTcYXOHM/Ti-fzTrBcYI/AAAAAAAADKM/tW0QH8bJtTc/s800/logoff-is-cancelled.png" rel="lightbox[11932]" title="logoff-is-cancelled"><img alt="" src="https://lh6.googleusercontent.com/-smrjTcYXOHM/Ti-fzTrBcYI/AAAAAAAADKM/tW0QH8bJtTc/s800/logoff-is-cancelled.png" title="logoff-is-cancelled" class="aligncenter" width="321" height="105" /></a></p>
<p>Now know your way around the Shutdown command, then let me tell you about the GUI. Although the Shutdown command is easy to follow you can make use of its optional graphical user interface by using the <strong><em>/i</em></strong> parameter.</p>
<pre>
shutdown /i
</pre>
<p><a href="https://lh4.googleusercontent.com/-tuEkBQycNpg/Ti-fzoAaofI/AAAAAAAADKQ/OvyZwIp49lw/s800/remote-shutdown-dialog.png" rel="lightbox[11932]" title="remote-shutdown-dialog"><img alt="" src="https://lh4.googleusercontent.com/-tuEkBQycNpg/Ti-fzoAaofI/AAAAAAAADKQ/OvyZwIp49lw/s800/remote-shutdown-dialog.png" title="remote-shutdown-dialog" class="aligncenter" width="424" height="477" /></a></p>
<p>If you want to learn more about other options that can be used in conjunction with the Shutdown command type.</p>
<pre>
shutdown ?
</pre>
<p>To display a complete list.</p>
<p><a href="https://lh4.googleusercontent.com/-1wp_oXOK63c/Ti-fz0K98zI/AAAAAAAADKU/NBxSFh1GxkQ/s800/shutdown-.png" rel="lightbox[11932]" title="Schedule A Shutdown In Windows"><img alt="" src="https://lh4.googleusercontent.com/-1wp_oXOK63c/Ti-fz0K98zI/AAAAAAAADKU/NBxSFh1GxkQ/s400/shutdown-.png" class="aligncenter" width="400" height="229" /></a></p>
<p>Keep this command in mind I&#8217;ve come to appreciate its usefulness.</p>
<h3>Links:</h3>
<p>  <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/shutdown.mspx?mfr=true" target="_blank">More info about the shutdown command</a></p>
<div style='clear:both'></div>
<p><a href="http://feedads.g.doubleclick.net/~a/AuZ9tVxNIFCrdPWKP4p8R9N33pc/0/da"><img src="http://feedads.g.doubleclick.net/~a/AuZ9tVxNIFCrdPWKP4p8R9N33pc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/AuZ9tVxNIFCrdPWKP4p8R9N33pc/1/da"><img src="http://feedads.g.doubleclick.net/~a/AuZ9tVxNIFCrdPWKP4p8R9N33pc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Linhost/~4/P53zKwQo3BI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://linhost.info/2011/07/schedule-a-shutdown-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://linhost.info/2011/07/schedule-a-shutdown-in-windows/</feedburner:origLink></item>
	</channel>
</rss>

