<?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>Programming Blog &#187; disk images</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/tag/disk-images/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 18 Aug 2011 08:11:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Netcat in Windows – First Steps</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/tutorial-it/netcat-in-windows-%e2%80%93-first-steps/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/tutorial-it/netcat-in-windows-%e2%80%93-first-steps/#comments</comments>
		<pubDate>Tue, 24 May 2011 19:40:13 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[tutorial it]]></category>
		<category><![CDATA[command cd]]></category>
		<category><![CDATA[cruft]]></category>
		<category><![CDATA[disk images]]></category>
		<category><![CDATA[file hex]]></category>
		<category><![CDATA[hex dump]]></category>
		<category><![CDATA[local mirror]]></category>
		<category><![CDATA[netcat]]></category>
		<category><![CDATA[port options]]></category>
		<category><![CDATA[udp mode]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/tutorial-it/netcat-in-windows-%e2%80%93-first-steps/</guid>
		<description><![CDATA[Running Netcat in Windows is easier than I tough, the entire process consists of downloading a single .zip file named nc111nt.zip from here or from the local mirror here. Wikipedia has a nice entry with examples on Netcat. How To Unzip the file and move the resulting folder to a location where you can access [...]]]></description>
			<content:encoded><![CDATA[<p>Running Netcat in Windows is easier than I tough, the entire process consists of downloading a single .zip file named <strong>nc111nt.zip</strong> from <a href="http://www.hackosis.com/wp-content/uploads/2007/12/nc111nt.zip">here</a> or from the local mirror <a href="http://linhost.info/downloads/apps/nc111nt.zip">here</a>.</p>
<p>Wikipedia has a nice entry with examples on <a href="http://en.wikipedia.org/wiki/Netcat">Netcat</a>.</p>
<h4>How To</h4>
</p>
<p>Unzip the file and move the resulting folder to a location where you can access it, for example.</p>
<div>
<div>
<pre>C:\Windows\nc111nt</pre>
</div>
</div>
<p>Open a command line window and move to the location where <strong>nc111nt</strong> is located by using the command <strong>cd</strong>.</p>
<div>
<div>
<pre>cd C:\Windows\nc111nt</pre>
</div>
</div>
<p>To run Netcat you need to type.</p>
<div>
<div>
<pre>C:\Windows\nc111nt\nc.exe [parameter]</pre>
</div>
</div>
<p>To view a list of available parameters type.</p>
<div>
<div>
<pre>C:\Users\Luis\Downloads\nc111nt&gt;nc.exe -help
[v1.11 NT www.vulnwatch.org/netcat/]
connect to somewhere:   nc [-options] hostname port[s] [ports] ...
listen for inbound:     nc -l -p port [options] [hostname] [port]
options:
        -d              detach from console, background mode
&nbsp;
        -e prog         inbound program to exec [dangerous!!]
        -g gateway      source-routing hop point[s], up to 8
        -G num          source-routing pointer: 4, 8, 12, ...
        -h              this cruft
        -i secs         delay interval for lines sent, ports scanned
        -l              listen mode, for inbound connects
        -L              listen harder, re-listen on socket close
        -n              numeric-only IP addresses, no DNS
        -o file         hex dump of traffic
        -p port         local port number
        -r              randomize local and remote ports
        -s addr         local source address
        -t              answer TELNET negotiation
        -u              UDP mode
        -v              verbose [use twice to be more verbose]
        -w secs         timeout for connects and final net reads
        -z              zero-I/O mode [used for scanning]
port numbers can be individual or ranges: m-n [inclusive]</pre>
</div>
</div>
<h4>Real Worl Example:</h4>
</p>
<p><img alt="" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3b175_netcat-overview.png" class="aligncenter" width="565" height="131" /></p>
<p>Netcat is possible of many things, but my favorite use is to transfer disk images created with dd over the network. As an example I am going to image a 4GB CF card over a gigabit network(no compression). The concept of sender and receiver will be used.</p>
<p>System where the image will be stored:</p>
<div>
<div>
<pre>nc –l –p 7000 | dd of=/dev/hda</pre>
</div>
</div>
<p>Source system:</p>
<div>
<div>
<pre>dd if=/dev/hda | nc 192.168.1.10 4000</pre>
</div>
</div>
<p>Not many things are this easy to run and use, but the nice thing about Netcat is that it works regardless of the operating system being used. Like said I mostly use it to transfer the images I create with the help of dd (Parted Magic) over to my Windows server.</p>
<h4>Links:</h4>
</p>
<ul>
<li>Wikipedia entry <a href="http://en.wikipedia.org/wiki/Netcat">Netcat</a></li>
<li><a href="http://www.hackosis.com/wp-content/uploads/2007/12/nc111nt.zip">Download from hackosis.com</a></li>
<li><a href="http://linhost.info/downloads/apps/nc111nt.zip">Download from local mirror</a></li>
</ul>
<p><!-- PHP 5.x -->
<div></div>
<p><a href="http://feedads.g.doubleclick.net/~a/aKIo_UxBmJtea8mRLWwVBvbILE4/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/02ba5_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/aKIo_UxBmJtea8mRLWwVBvbILE4/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f7f19_di" border="0"></img></a></p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f7f19_hTG6k79zV60" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/tutorial-it/netcat-in-windows-%e2%80%93-first-steps/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Chrome Installation Resources and Downloads</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/google-chrome-installation-resources-and-downloads/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/google-chrome-installation-resources-and-downloads/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 16:25:08 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[disk images]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[paul andrew]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[virtual machines]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/google-chrome-installation-resources-and-downloads/</guid>
		<description><![CDATA[In the past week Google debuted its new operating system called Chrome. Have you tried it yet? In todays news we have some resources to show you were to download and how install Chrome. And then decide for yourselves how good&#8230; or bad&#8230; it actually is. Want To Try Out Google Chrome OS For Yourself? [...]]]></description>
			<content:encoded><![CDATA[<p>In the past week Google debuted its new operating system called Chrome. Have you tried it yet? <br />In todays news we have some resources to show you were to download and how install Chrome. And then decide for yourselves how good&#8230; or bad&#8230; it actually is. </p>
<p><span></span></p>
<h4><a href="http://www.techcrunch.com/2009/11/19/guide-install-google-chrome-os/">Want To Try Out Google Chrome OS For Yourself? Here’s How&#8230;</a></h4>
<p><a href="http://www.techcrunch.com/2009/11/19/guide-install-google-chrome-os/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9597e_chrome1.jpg" alt="Want To Try Out Google Chrome OS For Yourself? Here’s How..." /></a></p>
<p>Most people won&#8217;t be ready to undertake the daunting task of actually taking Google’s recently open-sourced code and turning that into a bootable computer. So, in this article, they have put together a step-by-step guide to doing this, for free. It should only take about 15 minutes (depending on how long it takes to download the OS itself).</p>
<p><a href="http://www.techcrunch.com/2009/11/19/guide-install-google-chrome-os/">Want To Try Out Google Chrome OS For Yourself? Here’s How&#8230;</a></p>
<h4><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/">Download Google Chrome OS and Run it from a USB Drive</a></h4>
<p><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/668c8_chrome2.jpg" alt="Download Google Chrome OS and Run it from a USB Drive." /></a></p>
<p>Within  24 hours of its availabilty, the web was littered with disk images for running the new Google OS on virtual machines such as VMWare and VirtualBox. As an alternative, this article shows you how to run Chrome directly from a USB drive.</p>
<p><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/">Download Google Chrome OS and Run it from a USB Drive</a></p>
<h4><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/">Download Google Chrome OS for free &#8211; gdgt</a></h4>
<p><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/776a4_chrome3.jpg" alt="Download Google Chrome OS for free - gdgt" /></a></p>
<p>This is one of the many places to download the Google Chrome OS. Signup here , takes about 2 minutes, and then you can download it.<br />
You will need VMWare Player or VirtualBox to run the OS.</p>
<p><a href="http://www.makeuseof.com/tag/download-google-chrome-os-and-run-on-a-real-computer/">Download Google Chrome OS for free &#8211; gdgt</a></p>
<p>By Paul Andrew (<a href="http://speckyboy.com">Speckyboy</a> and <a href="http://twitter.com/speckyboy">speckyboy@twitter</a>).</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/776a4_i3c-r8qhFCk" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/DesignReviver">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/google-chrome-installation-resources-and-downloads/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

