<?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>HB blog</title>
	<atom:link href="http://blog.hbcom.info/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hbcom.info</link>
	<description>Just another weblog OR maybe not</description>
	<lastBuildDate>Tue, 29 Nov 2011 15:08:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Robots.txt tips and tricks</title>
		<link>http://blog.hbcom.info/archives/583?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=robots-txt-tips-and-tricks</link>
		<comments>http://blog.hbcom.info/archives/583#comments</comments>
		<pubDate>Tue, 29 Nov 2011 15:08:36 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=583</guid>
		<description><![CDATA[robots.txt is a file that you can use to instruct where web crawlers should look for information and where they should not. How it works? Good web crawler first accesses root of a domain and looks for robots.txt file. For example if robot wants to check www.example.com/welcome.html it will first check if www.example.com/robots.txt exists. And [...]]]></description>
			<content:encoded><![CDATA[<p>robots.txt is a file that you can use to instruct where web crawlers should look for information and where they should not.</p>
<h3>How it works?</h3>
<p>Good web crawler first accesses root of a domain and looks for robots.txt file.</p>
<p>For example if robot wants to check www.example.com/welcome.html it will first check if www.example.com/robots.txt exists.</p>
<p>And again for example it finds:</p>
<p>robots.txt:</p>
<p><code># No robots, Please<br />
User-agent: *<br />
Disallow: /</code></p>
<p>In above file:</p>
<p><code>User-agent: *</code> means this section applies to all robots and<br />
<code>Disallow: / </code>instructs the robot that it should not visit any pages on the site.</p>
<p>Note: It is important to know that robots can ignore your /robots.txt and robots.txt file is a publicly available file.</p>
<p>First consideration is really important to know since the robots who ignore the instructions are usually malicious.</p>
<h3>What to put inside?</h3>
<p>robots.txt is a plain text file. Here are few examples:</p>
<p>To <strong>allow</strong> <strong>all</strong> robots to visit <strong>all</strong> files:<br />
<code>User-agent: *<br />
Disallow:</code><br />
And opposite <strong>disallow all</strong> robots out:<br />
<code>User-agent: *<br />
Disallow: /</code></p>
<p>If you need to disallow a specific agent to visit specific folder<br />
<code>User-agent: SpecificBot # replace the 'SpecificBot' with the actual user-agent of the bot<br />
Disallow: /notimportant/</code><br />
Above example shows also how you can put comments in the file.</p>
<p>In addition you can tell robots where your sitemap is located<br />
<code>User-agent: *<br />
Sitemap: http://www.example.com/sitemaps/sitemap.xml</code></p>
<h3>Where to put it?</h3>
<p>The short answer: in the top-level directory of your web server.</p>
<p>A bit longer: it should be located after your domain name. For example <span style="color: #008000;">www.example.com/robots.txt</span> not <span style="color: #ff0000;">www.example.com/robot_file/robots.txt</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/583/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change timezone in CentOS &#8211; command line</title>
		<link>http://blog.hbcom.info/archives/572?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-timezone-in-centos-command-line</link>
		<comments>http://blog.hbcom.info/archives/572#comments</comments>
		<pubDate>Mon, 28 Nov 2011 15:55:42 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[timezone]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=572</guid>
		<description><![CDATA[If you just got your new CentOS server. After a while you notice that timestamps in your logfiles are shifted with few hours. So what could be wrong? Actually is really simple &#8211; most probably your timezone is not correct. To check run &#8220;date&#8221; from command line, this will show what is the time for [...]]]></description>
			<content:encoded><![CDATA[<p>If you just got your new CentOS server.</p>
<p>After a while you notice that timestamps in your logfiles are shifted with few hours. So what could be wrong?<br />
Actually is really simple &#8211; most probably your timezone is not correct. To check run &#8220;date&#8221; from command line, this will show what is the time for your server.<br />
Then you find that the timezone is not correct?!</p>
<p>How do you set the correct one?</p>
<p>Unfortunately, this is not an easy thing to figure out. Official documentation states that you can use system-config-date, but it has a bunch of dependencies (when I ran yum install system-config-date on one of my servers it asked to install 84 packages).</p>
<p>So is there an alternative way to do it?</p>
<p>All timezone files are located in /usr/share/zoneinfo. To select the appropriate named timezone for your location. For my location, Montreal, Canada, I actually have to select: America/Montreal. For you it could be different so make note of the appropriate folder and file for your timezone.</p>
<p>The active timezone used on your system is in the /etc/localtime file.</p>
<p>The default will vary depending on your server host and it depends on the value that was provided during installation.<br />
We simply need to replace this file with the file we selected in the previous step.<br />
Even I say replace, actually is recommended to create a link to the pertinent file rather than actually replacing the file.</p>
<p>Here are the steps to follow:</p>
<p>First, backup the existing localtime file (it is always good practice to make backups of original config files).<br />
<code></code></p>
<p><code>mv /etc/localtime /etc/localtime.bak</code></p>
<p>Next, create the link:<br />
<code></code></p>
<p><code>ln -s /usr/share/zoneinfo/<strong></strong> /etc/localtime</code></p>
<p>Test your change.<br />
Run “date” from the command line, and ensure that the appropriate time, date, and timezone are reported.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/572/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to edit hosts file in Windows</title>
		<link>http://blog.hbcom.info/archives/542?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-edit-hosts-file-in-windows</link>
		<comments>http://blog.hbcom.info/archives/542#comments</comments>
		<pubDate>Sat, 26 Nov 2011 00:10:15 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=542</guid>
		<description><![CDATA[hosts file is a text file used to map IP addresses to hostname before DNS was in place. So you will ask why to edit it? Simple &#8211; sometimes is required to have map if specific host to different IP ( for example: testing ). In general is not recommended to edit hosts file. Even [...]]]></description>
			<content:encoded><![CDATA[<p>hosts file is a text file used to map IP addresses to hostname before DNS was in place. So you will ask why to edit it?</p>
<p>Simple &#8211; sometimes is required to have map if specific host to different IP ( for example: testing ).</p>
<p>In general is not recommended to edit hosts file. Even some viruses are using it to map popular antivirus sites to localhost and hence deny access to them.</p>
<p>The file is located in %systemroot%\system32\drivers\etc\ (which for most of computers translate to C:\windows\system32\drivers\etc\)</p>
<p>In Windows XP and lower if you are logged as administrator you can edit the file directly, but to increase security (since most of ordinary users log as administrators) Microsoft decided to add in Windows Vista (and newer) additional layer of security so you are unable to edit the file directly.</p>
<p>Here is how to do it:</p>
<ol>
<li>In Start menu type Notepad</li>
<li>Right click on Notepad and select run as Administrator</li>
<li>Continue as usual &#8211; edit the file and save it</li>
</ol>
<p>Note: Some antivirus products &#8220;protect&#8221; hosts file so you might need to disable that protection before editing.</p>
<p>Note: For newbies the format of the file is following:</p>
<p style="padding-left: 30px;"><em>x.x.x.x FQDN</em></p>
<p>Where x.x.x.x is IP address in numeric form</p>
<p>and FQDN is Fully Qualified Domain Name</p>
<p>Example:</p>
<pre style="padding-left: 30px;">127.0.0.1  localhost</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/542/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install telnet in Windows</title>
		<link>http://blog.hbcom.info/archives/520?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-telnet-in-windows</link>
		<comments>http://blog.hbcom.info/archives/520#comments</comments>
		<pubDate>Wed, 23 Nov 2011 17:59:03 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=520</guid>
		<description><![CDATA[If you are using telnet to test and troubleshoot services you will be &#8220;surprised&#8221; that telnet is not installed by default. C:\Users\&#62;telnet 'telnet' is not recognized as an internal or external command, operable program or batch file. To to enable it back follow this procedure: Go to Start &#8211; &#62; Control Panel -&#62; Programs -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using telnet to test and troubleshoot services you will be &#8220;surprised&#8221; that telnet is not installed by default.<br />
<code></code></p>
<p style="text-align: left;"><code>C:\Users\&gt;telnet<br />
'telnet' is not recognized as an internal or external command,<br />
operable program or batch file.</code></p>
<p style="text-align: left;">To to enable it back follow this procedure:</p>
<ol>
<li>Go to Start &#8211; &gt; Control Panel -&gt; Programs -&gt; Turn Windows Features On and Off</li>
<li>Check Telnet Client and click OK (See screenshot below)</li>
<li>After a while it is ready</li>
<li>Enjoy</li>
</ol>
<p><a href="http://blog.hbcom.info/wp-content/uploads/2011/10/turn-on-telnet.jpg"><img class="size-full wp-image-525 aligncenter" title="Turn on telnet" src="http://blog.hbcom.info/wp-content/uploads/2011/10/turn-on-telnet.jpg" alt="Screenshot of Microsoft features showing how to enable Telnet" width="429" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/520/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send e-mail with telnet</title>
		<link>http://blog.hbcom.info/archives/518?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=send-e-mail-with-telnet</link>
		<comments>http://blog.hbcom.info/archives/518#comments</comments>
		<pubDate>Thu, 10 Nov 2011 13:57:28 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=518</guid>
		<description><![CDATA[When testing e-mail server one of the tools that are proven to be useful is plain old telnet. Actually this is not a surprise since SMTP protocol function is similar. Here is how to use it: 1. Start from command prompt 2. Type telnet mailhost 25 Note: Replace mailhost with your email server. 3. Type: [...]]]></description>
			<content:encoded><![CDATA[<p>When testing e-mail server one of the tools that are proven to be useful is plain old telnet.<br />
Actually this is not a surprise since SMTP protocol function is similar.</p>
<p>Here is how to use it:</p>
<p>1. Start from command prompt<br />
2. Type<br />
<code>telnet mailhost 25</code><br />
<em>Note: Replace mailhost with your email server</em>.</p>
<p>3. Type:<br />
<code>HELO server.com</code></p>
<p><em>Note1: depending on the server HELO have to be replaced with EHLO</em><br />
<em> Note2: Replace server.com with your domain</em></p>
<p>4. Type<br />
<code>MAIL FROM:you@server.com</code></p>
<p><em>Note: Again replace you@server.com with your e-mail address</em></p>
<p>5. Type</p>
<p><code>RCPT TO: recipient@server2.com</code></p>
<p><em>Note: Replace recipient@server2.com with recipient e-mail address</em><br />
6. Type</p>
<p><code>DATA</code><br />
after that optionally<br />
<code>SUBJECT: Your subject</code><br />
then type your message<br />
to finish place dot at new line.<br />
.<br />
6. To exit type<br />
<code>QUIT</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/518/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Temporary license expired</title>
		<link>http://blog.hbcom.info/archives/372?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=temporary-license-expired</link>
		<comments>http://blog.hbcom.info/archives/372#comments</comments>
		<pubDate>Mon, 31 Oct 2011 13:51:39 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Fix]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[terminal services]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=372</guid>
		<description><![CDATA[It happens that sometimes when connecting to misconfigured Windows Terminal server (TS) client receives following error message: &#8220;Your temporary license about to expire in&#8230; days&#8221; This is usually dye to misconfiguration on the server side, but here is the trick to get additional 90 days temporary license: WARNING: This requires editing of Windows registry. Use [...]]]></description>
			<content:encoded><![CDATA[<p>It happens that sometimes when connecting to misconfigured Windows Terminal server (TS) client receives following error message:</p>
<p style="padding-left: 30px;"><em>&#8220;Your temporary license about to expire in&#8230; days&#8221;</em></p>
<p>This is usually dye to misconfiguration on the server side, but here is the trick to get additional 90 days temporary license:</p>
<p><strong>WARNING</strong>: This requires editing of Windows registry. Use it on your own risk.</p>
<ol>
<li>Launch regedit &#8211; Start -&gt; Run&#8230; -&gt; regedit</li>
<li>Go to HKLM\Software\Microsoft\MSLicensing\</li>
<li>Delete hardwareID entry.</li>
<li>Enjoy another 90 days, but not forget to plan for fixing the issue <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_rolleyes.gif' alt=':roll:' class='wp-smiley' /> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/372/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs 1955-2011</title>
		<link>http://blog.hbcom.info/archives/500?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=steve-jobs-1955-2011</link>
		<comments>http://blog.hbcom.info/archives/500#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:44:13 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=500</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.hbcom.info/wp-content/uploads/2011/10/steve-jobs.jpg"><img class="aligncenter size-full wp-image-501" title="Steve Jobs" src="http://blog.hbcom.info/wp-content/uploads/2011/10/steve-jobs.jpg" alt="Steve Jobs" width="400" height="364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/500/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 &#8211; First updates</title>
		<link>http://blog.hbcom.info/archives/495?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-first-updates</link>
		<comments>http://blog.hbcom.info/archives/495#comments</comments>
		<pubDate>Tue, 20 Sep 2011 18:46:33 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=495</guid>
		<description><![CDATA[After initial installation I started to measure performance. One really good tool for the job is windows experience index. Initially my system had overall index of 2.1: Then I checked for updates. Fortunately there were some from Microsoft. Here is the result after updates: As you can see my index jumped to 2.3 and my [...]]]></description>
			<content:encoded><![CDATA[<p>After initial installation I started to measure performance.</p>
<p>One really good tool for the job is windows experience index.</p>
<p>Initially my system had overall index of 2.1:</p>
<p><a href="http://blog.hbcom.info/wp-content/uploads/2011/09/initial-scores.png"><img class="alignnone size-medium wp-image-496" title="initial scores" src="http://blog.hbcom.info/wp-content/uploads/2011/09/initial-scores-300x141.png" alt="" width="300" height="141" /></a></p>
<p>Then I checked for updates. Fortunately there were some from Microsoft. Here is the result after updates:</p>
<p><a href="http://blog.hbcom.info/wp-content/uploads/2011/09/scores-after-microsoft-update.png"><img class="alignnone size-medium wp-image-497" title="scores after microsoft update" src="http://blog.hbcom.info/wp-content/uploads/2011/09/scores-after-microsoft-update-300x141.png" alt="" width="300" height="141" /></a></p>
<p>As you can see my index jumped to 2.3 and my graphics performance increased to from 2.7 to 3.0.</p>
<p>Encouraged by this I&#8217;ve installed latest video driver from NVIDIA (for Windows 7):</p>
<p><a href="http://blog.hbcom.info/wp-content/uploads/2011/09/scores-after-nvidia-driver.png"><img class="alignnone size-medium wp-image-498" title="scores after nvidia driver" src="http://blog.hbcom.info/wp-content/uploads/2011/09/scores-after-nvidia-driver-300x139.png" alt="" width="300" height="139" /></a></p>
<p>The results since positive My index increased to 2.4 were not so drastic, but still an improvement. Probably this is because my card is relatively old and slow or just because NVIDIA does not have(yet) drivers tuned specifically for Windows 8&#8230;</p>
<p>Only time will tell <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/495/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 8 installation and initial experience</title>
		<link>http://blog.hbcom.info/archives/490?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=windows-8-installation-and-initial-experience</link>
		<comments>http://blog.hbcom.info/archives/490#comments</comments>
		<pubDate>Sun, 18 Sep 2011 03:43:56 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=490</guid>
		<description><![CDATA[I had Windows 8 installed on my old AMD 64 with 2G RAM. Installation went smoothly and it was really quick (did not time it, but it is faster than XP installation) with 2 reboots required. Almost all Hardware was recognized and functional &#8211; it looks like my integrated card reader give some trouble&#8230; but [...]]]></description>
			<content:encoded><![CDATA[<p>I had Windows 8 installed on my old AMD 64 with 2G RAM.</p>
<p>Installation went smoothly and it was really quick (did not time it, but it is faster than XP installation) with 2 reboots required.</p>
<p>Almost all Hardware was recognized and functional &#8211; it looks like my integrated card reader give some trouble&#8230; but will work on it.</p>
<p>What I had to probably start with is that the license for that system is valid until <strong>March 8, 2012</strong> (Is it a coincidence that this is international women day <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<p>And most importantly you have to plan that installation really carefully.</p>
<p>If you need to (witch is most probably the case) keep your old OS (XP/W7) you need to:</p>
<ol>
<li>Create new partition for Windows 8 &#8211; this can be done with live CD like <a href="http://partedmagic.com/doku.php?id=start" target="_blank">partedmagic</a> or similar tool (windows disk management).</li>
<li>Choose that partition as destination during windows 8 install &#8211; you need to choose Custom as install method.</li>
<li>Continue installation</li>
<li>After installed go to system properties -&gt; advanced -&gt; startup and recovery settings and choose previous Windows version.</li>
</ol>
<p>This procedure will show you menu on boot so you can choose what version to boot.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/490/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install Windows 8 dev preview from USB stick</title>
		<link>http://blog.hbcom.info/archives/484?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-windows-8-dev-preview-from-usb-stick</link>
		<comments>http://blog.hbcom.info/archives/484#comments</comments>
		<pubDate>Sun, 18 Sep 2011 02:46:05 +0000</pubDate>
		<dc:creator>hb</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://blog.hbcom.info/?p=484</guid>
		<description><![CDATA[If you did not notice Microsoft released Windows 8 developer preview. It can be freely downloaded from here. But how to install it on the new computers without DVD ( NO CD&#8217;s available since Win 7)? The simplest answer is from USB key. But the question is how to &#8220;burn&#8221; DVD image to USB key? [...]]]></description>
			<content:encoded><![CDATA[<p>If you did not notice Microsoft released Windows 8 developer preview.<br />
It can be freely downloaded from <a title="Windows 8 download page" href="http://msdn.microsoft.com/en-us/windows/apps/br229516" target="_blank">here</a>.</p>
<p>But how to install it on the new computers without DVD ( NO CD&#8217;s available <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  since Win 7)?</p>
<p>The simplest answer is from USB key. But the question is how to &#8220;burn&#8221; DVD image to USB key?</p>
<p>So here is what you need:</p>
<ol>
<li>Computer that covers minimum system requirements &#8211; 1GHz+ CPU, 1/2GB RAM (32/64-bit versions).</li>
<li>USB key (4G+) Smallest 32-bit image is 2.8G</li>
<li>High speed internet &#8211; do not even think downloading via 56k modem</li>
<li>You need to download appropriate version &#8211; 32 or 64 bit</li>
<li>And finally you need a tool to &#8220;burn&#8221; &#8211; take it from <a href="http://www.microsoftstore.com/store/msstore/html/pbPage.Help_Win7_usbdvd_dwnTool" target="_blank">here</a>.</li>
</ol>
<p>Next you need to:</p>
<ul>
<li>Install the tool</li>
</ul>
<ul>
<li>Run the tool &#8211; Simply follow the wizard.</li>
</ul>
<p><em>NOTE: your USB drive will be erased so make copy of your data before using it.</em></p>
<p><strong><em>Warning: See my other post &#8220;<a title="Windows 8 installation and initial experience" href="http://blog.hbcom.info/?p=490">Windows 8 installation and initial experience</a>&#8220;  before starting installation</em></strong>.</p>
<ul>
<li>Next step is to boot from USB key and install &#8211; this depends on your hardware <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
</ul>
<p><em>2-nd NOTE: This is development preview version. Do not expect it to be stable it is not intended for end users yet. <img src='http://blog.hbcom.info/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hbcom.info/archives/484/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.469 seconds -->

