
<?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>Nerdbloke &#187; Windows</title>
	<atom:link href="http://blog.pluis.com.au/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pluis.com.au</link>
	<description>Nerd. Bloke. Life</description>
	<lastBuildDate>Fri, 27 Aug 2010 09:24:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install Windows 7 from USB device</title>
		<link>http://blog.pluis.com.au/2009/12/12/install-windows-7-from-usb-device/</link>
		<comments>http://blog.pluis.com.au/2009/12/12/install-windows-7-from-usb-device/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 03:04:54 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.pluis.com.au/2009/12/12/install-windows-7-from-usb-device/</guid>
		<description><![CDATA[http://arstechnica.com/business/news/2009/12/-the-usb-flash-drive.ars
]]></description>
			<content:encoded><![CDATA[<p><a href="http://arstechnica.com/business/news/2009/12/-the-usb-flash-drive.ars">http://arstechnica.com/business/news/2009/12/-the-usb-flash-drive.ars</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pluis.com.au/2009/12/12/install-windows-7-from-usb-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to back up a windows installation</title>
		<link>http://blog.pluis.com.au/2008/03/05/how-to-back-up-a-windows-installation/</link>
		<comments>http://blog.pluis.com.au/2008/03/05/how-to-back-up-a-windows-installation/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 12:00:27 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.pluis.com.au/2008/03/05/how-to-back-up-a-windows-installation/</guid>
		<description><![CDATA[Now that I have installed winXP I think it&#8217;s time to back it up.
Summary
[Backup]
~$ sudo time dd if=/dev/hda1 ibs=4096 &#124; bzip2 -v --fast &#124; split -a 2 -b 1024m - winxpsp2.img-part-
[Verify backup files]
~$ md5sum /dev/hda1
~$ cat winxpsp2.img-part-* &#124; bunzip2 &#124; md5sum
[Restore]
~$ sudo time cat winxpsp2.img-part-* &#124; bunzip2 &#124; dd of=/dev/hda1
Detail
The dd command seems to be [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I have installed winXP I think it&#8217;s time to back it up.</p>
<h3>Summary</h3>
<p>[Backup]<br />
<code>~$ sudo time dd if=/dev/hda1 ibs=4096 | bzip2 -v --fast | split -a 2 -b 1024m - winxpsp2.img-part-</code></p>
<p>[Verify backup files]<br />
<code>~$ md5sum /dev/hda1</code></p>
<p><code>~$ cat winxpsp2.img-part-* | bunzip2 | md5sum</code></p>
<p>[Restore]<br />
<code>~$ sudo time cat winxpsp2.img-part-* | bunzip2 | dd of=/dev/hda1</code></p>
<h3>Detail</h3>
<p>The <a href="http://en.wikipedia.org/wiki/Dd_(Unix)"><code>dd</code> command</a> seems to be the way to go, but it backs up empty space as well, so I am using the compression tool <a href="http://www.bzip.org/1.0.3/bzip2.txt">bzip2</a> to ensure I don&#8217;t waste too much space. I&#8217;ll be storing the backup files on my network file server share.</p>
<p>First I&#8217;ll have to mount my file server shared directory:<br />
<code>~$ sudo mkdir /media/fileserver<br />
~$ sudo mount -t smbfs //server01/shared /media/fileserver -o username=<em>WindowsUserName</em>,password=<em>WindowsPassword</em></code></p>
<p>This command failed with the following error (grrr):<br />
<code>smbfs: mount_data version 1919251317 is not supported</code></p>
<p>After a quick google session I found that it means <a href="http://www.debian-administration.org/articles/165">the smbfs package is not installed</a>. I installed smbfs via: <code>sudo apt-get install smbfs</code> then executed this again:<br />
<code>~$ sudo mount -t smbfs //server01/shared /media/fileserver -o username=<em>WindowsUserName</em>,password=<em>WindowsPassword</em></code></p>
<p>Now we are ready to backup not just the windows installation, but the entire partition that it is installed on.</p>
<p>The command to back up the partition is:<br />
<code>~$ sudo time dd if=/dev/hda1 ibs=4096 | bzip2 -v --fast | split -a 2 -b 1024m - winxpsp2.img-part-</code></p>
<p>Where <code>sudo time dd if=/dev/hda1 ibs=4096</code> means:</p>
<table>
<tr>
<td><strong>sudo</strong></td>
<td>Super user do. That is, do the following command as the root user.</td>
</tr>
<tr>
<td><strong>time</strong></td>
<td>Report how long the commands took</td>
</tr>
<tr>
<td><strong>dd</strong></td>
<td>Disk Dump (as far as I know)</td>
</tr>
<tr>
<td><strong>if</strong></td>
<td>In file</td>
</tr>
<tr>
<td><strong>/dev/hda1</strong></td>
<td>A reference to the partition that has windows on it</td>
</tr>
<tr>
<td><strong>ibs</strong></td>
<td>Input byte size. That is, read 4096 bytes at a time</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<p>The results of the above commands are then piped into the bzip2 compression tool where <code>bzip2 -v --fast</code> means:</p>
<table>
<tr>
<td><strong>bzip2</strong></td>
<td>Name of compression program</td>
</tr>
<tr>
<td><strong>-v</strong></td>
<td>Do verbose logging (a bit pointless when piping &#8211; it really shouldn&#8217;t be there)</td>
</tr>
<tr>
<td><strong>&#8211;fast</strong></td>
<td>Do fast compression. basically means it&#8217;s compressing smaller block sizes, which leads to sub-optimal compression. 7.5GB is still going to take about 2 hours on my AMD 2500+ CPU</td>
</tr>
</table>
<p>The output of the compression tool is then piped (yet again) to a tool called <code>split that splits large files into smaller ones. It uses the following syntax <code>split -a 2 -b 1024m - winxpsp2.img-part-</code> where:</code></p>
<table>
<tr>
<td><strong>split</strong></td>
<td>Name of splitting program</td>
</tr>
<tr>
<td><strong>-a 2</strong></td>
<td>The number indicates how many suffixes to use in the output file name. Say I split a large file into 3 pieces. I can use <code>-a 1</code> to give me three files called file<strong>a</strong>, file<strong>b</strong> and file<strong>b</strong>. Using <code>-a 2</code> would result in three files called  file<strong>aa</strong>, file<strong>ab</strong> and file<strong>ac</strong>.</td>
</tr>
<tr>
<td><strong>-b 1024m</strong></td>
<td>Indicates the maximum size of each split output file &#8211; in this case 1024MB (1 gigabyte)</td>
</tr>
<tr>
<td><strong> -&nbsp;winxpsp2.img-part-</strong>:</td>
<td>The first dash means read from standard input (or piped input &#8211; same thing really). Usually you could put the name of a file to split. The &#8216;<code>winxpsp2.img-part-</code>&#8216; bit means to name each file <code>winxpsp2.img-part-</code> followed by the specified amount of suffices. In this case winxpsp2.img-part-aa, winxpsp2.img-part-ab, &#8230; winxpsp2.img-part-ah.</td>
</tr>
</table>
<p>Eventually I guess I&#8217;ll do something silly and trash Windows XP. If that is the case I should be able to restore it by:<br />
<code>~$ sudo time cat winxpsp2.img-part-* | bunzip2 | dd of=/dev/hda1</code></p>
<p>Tada! A brand new windows installation in mint condition.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pluis.com.au/2008/03/05/how-to-back-up-a-windows-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Windows XP SP2</title>
		<link>http://blog.pluis.com.au/2008/03/05/installing-windows-xp-sp2/</link>
		<comments>http://blog.pluis.com.au/2008/03/05/installing-windows-xp-sp2/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 11:59:20 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.pluis.com.au/2008/03/05/installing-windows-xp-sp2/</guid>
		<description><![CDATA[A lot of steps:

Install WinXP SP2 from CD
Adjust folder settings. I like to see the folders NOT in simple view. I also like to see extensions.
Move &#8216;My Documents&#8217; to be on another partition
Install motherboard drivers
Turn off firewall, autoupdate and virus protection, then disable security center alerts.
Join my local PC workgroup.
Set up network 10.10.0.x/255.255.255.0
Configure the cmd [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of steps:</p>
<ol>
<li>Install WinXP SP2 from CD</li>
<li>Adjust folder settings. I like to see the folders NOT in simple view. I also like to see extensions.</li>
<li><a href="http://support.microsoft.com/kb/310147">Move &#8216;My Documents&#8217;</a> to be on another partition</li>
<li>Install motherboard drivers</li>
<li>Turn off firewall, autoupdate and virus protection, then <a href="http://www.microsoft.com/windowsxp/using/security/internet/sp2_disablescalerts.mspx">disable security center alerts</a>.</li>
<li>Join my local PC workgroup.</li>
<li>Set up network 10.10.0.x/255.255.255.0</li>
<li>Configure the cmd shell. I like 100 chars wide, 55 deep, black background, light green text.</li>
<li>Install a firewall. Currently using an <a href="http://www.oldversion.com/program.php?n=tpfirewall">old version of Tiny Personal Firewall</a> (version 2). Might be time to try something else&#8230;</li>
<li>Do lots of <a href="http://www.update.microsoft.com/">Windows Updates</a> and enjoy your Windows Genuine Advantage check.</li>
<li>Set <a href="http://google.com/ig">https://google.com/ig</a> as homepage in IE7</li>
<li><a href="http://support.microsoft.com/kb/967715/">Disable autoruns on all devices</a>. (ie usb, CD&#8217;s, DVD&#8217;s etc)</li>
<li>Install <a href="http://www.heidi.ie/eraser/">eraser</a> to zero out all the unused HDD space.</li>
</ol>
<p>It&#8217;s at this point that I figured the installation is worth backing up. (<a href="http://blog.pluis.com.au/?p=66">See next post&#8230;</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pluis.com.au/2008/03/05/installing-windows-xp-sp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making Ubuntu wife-friendly</title>
		<link>http://blog.pluis.com.au/2007/07/29/making-ubuntu-wife-friendly/</link>
		<comments>http://blog.pluis.com.au/2007/07/29/making-ubuntu-wife-friendly/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 11:11:00 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://blog.pluis.com.au/?p=31</guid>
		<description><![CDATA[At home the study PC is used by the entire family. We all share the same account. I&#8217;ve been getting quite into Ubuntu for quite some time now, the only thing stopping me from moving entirely to Ubuntu is the wife factor.

Email clients are different.
Everything looks different.

Our windows email client is Eudora. While it&#8217;s in [...]]]></description>
			<content:encoded><![CDATA[<p>At home the study PC is used by the entire family. We all share the same account. I&#8217;ve been getting quite into Ubuntu for quite some time now, the only thing stopping me from moving entirely to Ubuntu is the wife factor.</p>
<ol>
<li>Email clients are different.</li>
<li>Everything looks different.</li>
</ol>
<p>Our windows email client is <a href="http://www.eudora.com/">Eudora</a>. While it&#8217;s in the process of being <a href="http://www.eudora.com/press/2006/eudora-mozilla_final_10.11.06.html">open-sourced</a> there is still no linux client. The reason we don&#8217;t just switch is due to the history. We&#8217;ve got 5+ years of emails, attachments and addresses stashed away in Eudora that I am not sure how to port over to something like <a href="http://www.mozilla-europe.org/en/products/thunderbird/">Thunderbird</a>.</p>
<p>So, in the meantime I&#8217;ve installed <a href="http://www.ubuntu.com/">Ubuntu</a> 7.04 (aka Feisty Fawn) &#8211; desktop edition to another partition and have settled on dual-booting until I can get these things sorted out. I am slowly working on problem 2 &#8211; Everything looks different&#8230;</p>
<p>I found a <a href="http://forums.whirlpool.net.au/forum-replies-archive.cfm/421531.html">post on whirlpool</a> that mentioned some of the things I was thinking &#8211; like <a href="http://www.xpde.com/">xpde an xp theme</a> for Ubuntu. But I didn;t like xpde, and figured I could come up with something that was more like the theme we use at home.</p>
<p><a href="http://forums.whirlpool.net.au/forum-user.cfm?id=92589">One guy</a> mentioned replacing the Ubuntu menu icon with a more windowsy start icon.</p>
<p style="text-align: justify">&nbsp;</p>
<blockquote><p>The Ubuntu logo icon is called &#8216;distributor-logo.png&#8217; and right now 95% of themes and icon sets are unaware of it as it has just been introduced. This will change. But for now, just replace it. Either globally (/usr/share/icons/hicolor/48&#215;48/ap­ ps/distributor-logo.png) or per-user (~/.icons/name_of_your_current_ico­ n_theme/somedir/apps/gnome-main-menu.ext).</p></blockquote>
<p>So I made one. Tada: <a href="http://bp2.blogger.com/_u7GrjoNFu4Y/RqyB00J9NXI/AAAAAAAAAFw/KZvZliRx938/s1600-h/Windows+Start+-+Tux.png"><img src="http://bp2.blogger.com/_u7GrjoNFu4Y/RqyB00J9NXI/AAAAAAAAAFw/KZvZliRx938/s200/Windows+Start+-+Tux.png" style="cursor: pointer" border="0" /></a></p>
<p>You can probably guess that I am a fan of Windows 2000 themes. We still use Windows 2000 at home, and I dislike the XP theme enough that I switched my work PC back to the Windows 2000 look&#8217;n'feel asap.</p>
<h3>Update (7 March 2008)</h3>
<p>I managed to get linux and windows reading the same profile information so they could share the same emails and address books. One way to do is <a href="http://3dgpu.com/forums/index.php?showtopic=4953">outlined here</a>, but I found an even easier way:</p>
<ul>
<li>Install Thunderbird on first OS</li>
<li>Make sure your profile is stored on a partition that can be read by both windows and linux (ie a FAT32 partition).</li>
<li>Check everything is still AOK in first OS</li>
<li>Reboot into your other OS and open Thunderbird using the &#8220;-P&#8221; parameter to ensure the profile is asked for.</li>
<li>Point it to the funny named directory (something like 1a2s3d4fg5.default).</li>
<li>Tada! Your alternate OS can read and share the same email  and address book.</li>
</ul>
<p>Worked a treat for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.pluis.com.au/2007/07/29/making-ubuntu-wife-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
