<?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>Bits and Bites &#187; Technology</title>
	<atom:link href="http://www.wongzhongming.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wongzhongming.com</link>
	<description>technology, food, and other hobbies</description>
	<lastBuildDate>Wed, 08 Apr 2009 01:49:48 +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>Running Multiple Sites on Your Local Apache Server via Virtual Hosts</title>
		<link>http://www.wongzhongming.com/2009/04/07/running-multiple-sites-on-your-local-apache-server-via-virtual-hosts/</link>
		<comments>http://www.wongzhongming.com/2009/04/07/running-multiple-sites-on-your-local-apache-server-via-virtual-hosts/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:49:48 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Site Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=287</guid>
		<description><![CDATA[Disclaimer: I only recommend doing this on a local dev box, as I don&#8217;t know what sort of (in)security implications this may have.

There are times when, for the sake of convenience or testing, you may want to run multiple sites off your local machine. This can be accomplished by setting up a virtual host in [...]]]></description>
			<content:encoded><![CDATA[<p>Disclaimer: I only recommend doing this on a local dev box, as I don&#8217;t know what sort of (in)security implications this may have.</p>

<p>There are times when, for the sake of convenience or testing, you may want to run multiple sites off your local machine. This can be accomplished by setting up a virtual host in Apache and tinkering with the port numbers. Looking in your <code class="path">/etc/apache2/sites-available/</code> directory you&#8217;ll notice a <code class="file">default</code> file. Make a copy of this and name it whatever you&#8217;d like (perhaps the name of your site), then open it up in a text editor. Change port 80 in the first line, <code class="variable">&lt;VirtualHost *:80&gt;</code>, to some unused port number, and the <code class="variable">DocumentRoot</code> directory to that of your other site. You may also want to change some other variables such as <code code="variable">ErrorLog</code> so as to not conflict with other sites that you&#8217;re running.</p>

<p>Then open up <code class="path">/etc/apache2/ports.conf</code> and add
	<code class="multi-line">
		<p>NameVirtualHost *:&lt;port_number&gt;</p>
		<p>Listen &lt;port_number&gt;</p>
	</code>
where &lt;port_number&gt; is the one you specified in the new site configuration, after the existing defaults for port 80. Going back to <code class="path">/etc/apache2/sites-available/</code>, run the <code class="command">a2ensite</code> command on the site configuration file you just created, then restart Apache with <code class="command">sudo apache2ctl restart</code>. You should now be able to hit your other site via <code class="url">http://localhost:&lt;port_number&gt;/<code>. To later disable this site, run the <code class="command">a2dissite &lt;config_file&gt;</code> command.

<p>For additional information on virtual hosts, including how to have IP-based (rather than port-based) virtual hosts, take a look at <a href="http://httpd.apache.org/docs/2.0/vhosts/examples.html">Apache's virtual host documentation</a>. ]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/04/07/running-multiple-sites-on-your-local-apache-server-via-virtual-hosts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a Local Apache2 Server on Ubuntu</title>
		<link>http://www.wongzhongming.com/2009/04/07/setting-up-a-local-apache2-server-on-ubuntu/</link>
		<comments>http://www.wongzhongming.com/2009/04/07/setting-up-a-local-apache2-server-on-ubuntu/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 01:12:57 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Site Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=282</guid>
		<description><![CDATA[Getting an Apache2 server running on your Ubuntu box for some local dev work is pretty easy. Install the apache2 package via the Synaptic Package Manager or sudo apt-get install. Unlike normal Apache2 installs though, the default Apache install in Ubuntu is located under /etc/apache2/.

Without getting into nitty-gritty configuration details, most users will probably want [...]]]></description>
			<content:encoded><![CDATA[<p>Getting an Apache2 server running on your Ubuntu box for some local dev work is pretty easy. Install the <code class="package">apache2</code> package via the Synaptic Package Manager or <code class="command">sudo apt-get install</code>. Unlike normal Apache2 installs though, the default Apache install in Ubuntu is located under <code class="path">/etc/apache2/</code>.</p>

<p>Without getting into nitty-gritty configuration details, most users will probably want to change the directory that the server reads files from. To do this, open up <code class="path">/etc/apache2/sites-available/default</code> in a text editor of your choice, and change the <code class="variable">DocumentRoot</code> to the directory that you wish to serve your files from. Restart your server by running either <code class="command">sudo /etc/init.d/apache2 restart</code> or <code class="command">sudo apache2ctl restart</code>. Then simply hit <code class="url">http://localhost/</code> in your web browser to view.</p>

<p>For additional details on how to set up the full LAMP stack, take a look at <a href="http://www.howtoforge.com/ubuntu_debian_lamp_server">this HowtoForge tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/04/07/setting-up-a-local-apache2-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual Booting on the e6400: Part Three &#8211; Setting Up Ubuntu Intrepid Ibex</title>
		<link>http://www.wongzhongming.com/2009/04/05/dual-booting-on-the-e6400-setting-up-ubuntu-intrepid-ibex/</link>
		<comments>http://www.wongzhongming.com/2009/04/05/dual-booting-on-the-e6400-setting-up-ubuntu-intrepid-ibex/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:12:48 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Laptops]]></category>
		<category><![CDATA[Latitude e6400]]></category>
		<category><![CDATA[NTFS-3G]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=58</guid>
		<description><![CDATA[Similar to the XP Setup post, I won&#8217;t be covering the actual Intrepid installation (which is made incredibly easy by the guided install). I&#8217;ll be going over the major pieces of software I installed, and finishing up with some comments about various issues I ran into. Note that this guide is written under the assumption [...]]]></description>
			<content:encoded><![CDATA[<p>Similar to the <a href="http://www.wongzhongming.com/2009/01/26/dual-booting-on-the-e6400-part-two-setting-up-windows-xp/">XP Setup post</a>, I won&#8217;t be covering the actual Intrepid installation (which is made incredibly easy by the guided install). I&#8217;ll be going over the major pieces of software I installed, and finishing up with some comments about various issues I ran into. Note that this guide is written under the assumption that one has some understanding of how to use a *nix OS, with much of the information coming from the <a href="http://ubuntuguide.org/wiki/Ubuntu:Intrepid">Ubuntu Intrepid Ipex Guide</a></p>

<p>I must also apologize for how long it took to publish this post. I wasn&#8217;t (in fact, I&#8217;m still not) satisfied with the formatting of this post, which kept me from putting it out for you all to see. But I noticed a lot of people reading the previous two in the dual boot series, and figured some of you might be wanting part three (seeing comments would have resulted in a faster post folks :p)</p>

<h3 class="post-sub-header">Some Notes Before You Start</h3>

<p>Software can either be installed with <code class="command">sudo apt-get install</code> in a terminal, or via System -&gt; Administration -&gt; Synaptic Package Manager. Choose the one that suits your fancy &#8211; I generally use the Package Manager, opting for the terminal when it&#8217;s easier to just copy and paste a large list of software. Enabling additional repositories is also easier via the Package Manager, and can be done by going to Settings -&gt; Repositories, where I generally enable all of them (main, universe, restricted, and multiverse). Additional repositories can be added by selecting the Third-Party Software tab and clicking add, entering the apt line in the window that pops up.</p>

<h3 class="post-sub-header">Essential Software</h3>

<p>For those with laptop specs similar to <a href="http://www.wongzhongming.com/2009/01/20/dell-outlet-latitude-e6400-review/">mine</a>, there are two pieces of software that I consider must-haves.</p>

<dl>
	<dt>NVIDA Graphics Driver</dt>
	<dd>Intrepid should ask you when you first log in if you wish to enable the driver. If it doesn&#8217;t, you can install it manually by going to System -&gt; Administration -&gt; Hardware Drivers and selecting the appropriate version. Note that you&#8217;ll probably have to agree to allowing the installation of proprietary drivers.</dd>
	<dt>gsynaptics</dt>
	<dd>This is the touchpad driver and software, found under the <code class="package">gsynaptics</code> package. After the installation is complete, you can configure your touchpad by going to System -&gt; Preferences -&gt; Touchpad.</p>
</dl>

<h3 class="post-sub-header">Highly Recommended Software</h3>

<dl>
	<dt>Sensors Applet and i8kutil</dt>
	<dd>Both of these are applications for monitoring your system. Sensors Applet is a GUI applet that can be added to your toolbar (listed as Hardware Sensors Monitor), displaying various system component temperatures. Installing i8kutil will enable monitoring similar to the Windows-only <a href="http://www.diefer.de/i8kfan/index.html">i8kfanGUI</a>, reading fan speeds in addition to component temperatures. These can be found under <code class="package">sensors-applet</code> and <code class="package">i8kutil</code>, respectively. In order to enable i8kutil monitoring though, two additional steps must be taken. After installing, open up a terminal and run 
		<code class="multi-line">
			<p>sudo modprobe i8k</p>
			<p>sudo vim /etc/modules</p>
		</code>
Add <code class="package">i8k</code> to that file, save and close.</dd>
	<dt>Ubuntu Restricted Extras</dt>
	<dd>This package pulls in a number of commonly used packages including various media codecs, the Flash plugin, Java runtime, and Microsoft fonts (like Arial and Verdana). Note that, as the package name (<code class="package">ubuntu-restricted-extras</code>) suggests, these are pulled in from the restricted and multiverse repositories and may have certain restrictions on their usage.</dd>
</dl>

<h3 class="post-sub-header">Eye Candy</h3>

<dl>
	<dt>Avant Windows Manager</dt>
	<dd>This enables a highly configurable and skinnable Mac-like dock for your OS. Check out the <a href="http://ubuntuguide.org/wiki/Ubuntu:Intrepid#Avant_Window_Manager">Avant Windows Manager section</a> in the Ubuntu guide for installation steps. A number of themes can be found on the <a href="http://wiki.awn-project.org/Themes">AWN wiki page</a>.</dd>
	<dt>Compiz</dt>
	<dd>Less functional and much more eye-candy, this enables anything from glossier windows to fancy animations and effects when modifying windows (such as on resize, move, or minimize). Check out the section on <a href="http://ubuntuguide.org/wiki/Ubuntu:Intrepid#Compiz_Fusion">installing Compiz</a> in the guide.</dd>
</dl>

<h3 class="post-sub-header">A Few Notes and Tips</h3>

I leave you with some notes and tips about situations I ran into, that my readers may find useful. I make references in several tips to sda#. This refers to the ID of the particular partition that you&#8217;re working with &#8211; one way to find this if you know your partition sizes is by looking at System -&gt; Administration -&gt; System Monitor. Then under the File Systems tab, locate the device name matching the proper size.

<dl>
	<dt>Bug: Firefox toolbar config not saved</dt>
	<dd>Anyone that notices Firefox not saving their toolbar customizations when opening a new window can try disabling the Ubuntu Firefox Modifications plugin. Designed to integrate things like your system theme and apt support into Firefox (and thus not essential), it caused my Firefox to forget my toolbar config in certain situations.</dd>
	<dt>Changing your inode size</dt>
	<dd>As mentioned in <a href="http://www.wongzhongming.com/2009/01/23/dual-booting-on-the-e6400-part-one-partitioning/">part one</a>, some of you may want to mount your Ubuntu partitions in Windows and find themselves unable to do so because of Intrepid&#8217;s 256 byte inodes. Those unable to use the simpler method of partitioning with Hardy Heron and GParted can try the steps I used myself for modifying my <code class="path">/home</code> partition:
		<ol>
			<li>Zip up <code class="path">/home</code> and store it on an external drive. Zipping the partition allows one to preserve some files that would otherwise not be copyable, such as certain symlinks.</li>
			<li>Reboot with a live cd</li>
			<li>Run <code class="single-line">mkfs.ext3 -I 128 /dev/sda#</code> inside a terminal, where sda# is the ID of the <code class="path">/home</code> partition.</li>
			<li>Unzip the file from step 1 back into <code class="path">/home</code>.</li>
			<li>Run 
				<code class="multi-line">
					<p>chown -R &lt;username&gt;:&lt;username&gt; /home/&lt;username&gt;</p>
					<p>chmod 644 /home/&lt;username&gt;/.dmrc /home/&lt;username&gt;/.IDCEauthority</p>
				</code>
			</li>
			<li>Find the UUID of the partition (as it will have changed after having run <code class="command">mkfs</code>) by doing <code class="single-line">sudo vol_id -u /dev/sda#</code></li>
			<li><code class="single-line">sudo vim /etc/fstab</code> and update the line representing <code class="path">/home</code> with the new UUID.</li>
		</ol>
	</dd>
	<dt>Tip: Adding fonts</dt>
	<dd>Installing new fonts in previous versions of Ubuntu could be easily accomplished by dragging the font file into the system&#8217;s fonts folder. This folder needs to be manually created in Intrepid, which can be done in the terminal by running <code class="single-line">mkdir ~/.fonts</code>.</dd>
	<dt>Tip: Keeping your system clean</dt>
	<dd>
		Your Ubuntu system can become pretty messy after some use, with things like unused dependencies remaining after uninstalling packages. These unused dependencies can be removed by running
		<code class="single-line">sudo apt-get autoremove</code>
		Similarly, upgrading to new Linux kernels will start to clog up the grub boot loader with multiple kernel choices. If you wish to remove these, simply uninstall the relevant kernel packages, usually consisting of a <code class="package">linux-headers-&lt;version&gt;</code>, <code class="package">linux-headers-&lt;version&gt;-generic</code>, <code class="package">linux-restricted-modules-&lt;version&gt;</code>, and <code class="package">linux-image-&lt;version&gt;-generic</code> package. More tips on cleaning your system clean can be found in this <a href="http://maketecheasier.com/8-ways-to-maintain-a-clean-lean-ubuntu-machine/2008/10/07">Make Tech Easier post</a>.
	</dd>
	<dt>Tip: Sharing Pidgin logs between XP and Intrepid</dt>
	<dd>Doing this requires permanently mounting your Windows partition in Ubuntu (this can also be done in Windows instead, but creating symlinks was too complicated for me to bother with). Determine the name of your Windows partition, and then, opening up <code class="path">/etc/fstab</code> in an editor, add <code class="single-line">/dev/&lt;device name&gt;       /windows        ntfs-3g         defaults,locale=en_US.UTF-8     0       0</code></dd>
</dl>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/04/05/dual-booting-on-the-e6400-setting-up-ubuntu-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export to Flickr Plugin for Lightroom</title>
		<link>http://www.wongzhongming.com/2009/02/21/export-to-flickr-plugin-for-lightroom/</link>
		<comments>http://www.wongzhongming.com/2009/02/21/export-to-flickr-plugin-for-lightroom/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 03:08:27 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=232</guid>
		<description><![CDATA[I&#8217;ve been using Jeffrey Friedl&#8217;s &#8220;Export to Flickr&#8221; Lightroom Plugin for about a month now, and I have to say that it&#8217;s a pretty solid plugin. My motive for finding an alternative to Flickr&#8217;s Uploadr was to automate my backup workflow &#8211; manually exporting all my RAW files to JPGs and then creating individual sets [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Jeffrey Friedl&#8217;s <a href="http://regex.info/blog/lightroom-goodies/flickr">&#8220;Export to Flickr&#8221; Lightroom Plugin</a> for about a month now, and I have to say that it&#8217;s a pretty solid plugin. My motive for finding an alternative to Flickr&#8217;s <a href="http://www.flickr.com/tools/">Uploadr</a> was to automate my backup workflow &#8211; manually exporting all my RAW files to JPGs and then creating individual sets for everything would have been unnecessarily tedious, given that I had about four year&#8217;s worth of photos to backup.</p>

<p>My only complaint is with how the plugin handles errors. When something goes wrong, an error message pops up and the entire export process is aborted. While I can understand this when serious errors occur, I wish there was some sort of timeout-and-retry-before-aborting mechanism in place, especially in the case of not getting a response from Flickr, due to, say, your network connection going out temporarily. It&#8217;s a bit frustrating to leave Lightroom running overnight to backup several hundred photos, only to wake up in the morning and finding out that the export process aborted after the 10th image.</p>


<p>But again, a very solid plugin overall and I highly recommend it. And while it started as just a backup tool, I&#8217;ve begun to use it for publishing my public photos to Flickr as well. Based on subjective experience (I don&#8217;t plan to test for actual numbers), it seems as though Uploadr throttles the upload speed, with Jeffrey&#8217;s plugin pushing photos to Flickr at least three times faster, a speed boost which is more than welcome.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/02/21/export-to-flickr-plugin-for-lightroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing Capture Time in Lightroom</title>
		<link>http://www.wongzhongming.com/2009/02/21/editing-capture-time-in-lightroom/</link>
		<comments>http://www.wongzhongming.com/2009/02/21/editing-capture-time-in-lightroom/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 15:26:33 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=237</guid>
		<description><![CDATA[When taking photos in a different time zone, I usually adjust the capture time during post-processing in Lightroom, rather than directly adjusting the time and date on my camera. This is easily accomplished by going to Metadata -&#62; Edit Capture Time, and choosing the second option in the window that pops up, &#8220;Shift by set [...]]]></description>
			<content:encoded><![CDATA[<p>When taking photos in a different time zone, I usually adjust the capture time during post-processing in Lightroom, rather than directly adjusting the time and date on my camera. This is easily accomplished by going to Metadata -&gt; Edit Capture Time, and choosing the second option in the window that pops up, &#8220;Shift by set number of hours (time zone adjust)&#8221;.</p>

<div class="thumbnail">
	<a href="http://www.wongzhongming.com/images/blog/2009_02_21/edit-capture-time.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_21/edit-capture-time_thumb.png"></a>
</div>

<p>But about three weeks into my stay in Taiwan, I realized that the time on my Olympus C-5060 was completely wrong, being off by some 15 hours and 40 minutes, rather than the normal 16 hour time difference. Edit Capture Time didn&#8217;t seem to offer such fine tuning, only allowing the user to change all photos to one specific time, or by a set number of hours. It turns out that the &#8220;Adjust to a specified date and time&#8221; option is a bit misleading, and is, in fact, what I was looking for. When selecting multiple photos, the time you see in the Edit Capture Time tool is of the one photo that is the focus of that selection. When you change the time of this photo, all other photos in the selection have their capture time shifted appropriately, and are not all set to the same time as one is led to believe.</p>

<div class="thumbnail">
	<a href="http://www.wongzhongming.com/images/blog/2009_02_21/adjust-to-specified-time.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_21/adjust-to-specified-time_thumb.png"></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/02/21/editing-capture-time-in-lightroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignoring Files in Subversion with svn:ignore</title>
		<link>http://www.wongzhongming.com/2009/02/05/ignoring-files-in-subversion-with-svnignore/</link>
		<comments>http://www.wongzhongming.com/2009/02/05/ignoring-files-in-subversion-with-svnignore/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:21:33 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=164</guid>
		<description><![CDATA[There may be times when you want to keep certain files out of Subversion. Examples of these include local configuration files and temporary files like those created by vim. Fortunately, Subversion has an option to specify exclusions, via svn:ignore. To do this, run the following in a terminal

svn propedit svn:ignore &#60;parent directory of the files/directories [...]]]></description>
			<content:encoded><![CDATA[<p>There may be times when you want to keep certain files out of Subversion. Examples of these include local configuration files and temporary files like those created by vim. Fortunately, Subversion has an option to specify exclusions, via <code>svn:ignore</code>. To do this, run the following in a terminal</p>

<p><code>svn propedit svn:ignore &lt;parent directory of the files/directories to ignore&gt;</code></p>

<p>This will open up a text editor where you can specify what to ignore, one file/directory per line. Remember that these are all relative to the parent directory you specified. Two things to note:</p>

<ul>
	<li>The command is <code>svn propedit</code> and not <code>svn propset</code> in a normal use case. The latter command is for migrating CVS ignore files, and will produce a <code>Explicit target required</code> error if you attempt to run it on a directory.</li>
	<li>This only works for items not yet in the repository. If the file or directory was previously placed in Subversion, specifying it in the ignore file won&#8217;t have any effect.</li>
</ul>

<p>Check out the <a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.advanced.props.special.ignore">chapter on ignoring unversioned items</a> of the online Subversion book for more information, such as what file pattern syntax you can use in the ignore file.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/02/05/ignoring-files-in-subversion-with-svnignore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling Traditional Chinese Pinyin Input on Windows XP and Ubuntu Intrepid Ibex</title>
		<link>http://www.wongzhongming.com/2009/02/05/enabling-traditional-chinese-pinyin-input-on-windows-xp-and-ubuntu-intrepid-ibex/</link>
		<comments>http://www.wongzhongming.com/2009/02/05/enabling-traditional-chinese-pinyin-input-on-windows-xp-and-ubuntu-intrepid-ibex/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 17:08:05 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Chinese Language Input]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=97</guid>
		<description><![CDATA[While enabling simplified Chinese in both Windows XP and Ubuntu Intrepid Ibex is pretty straightforward, getting traditional Chinese to work is a bit more roundabout.

To enable in XP&#8230;


	Go to the Control Panel and open Regional and Language Options.
	
		
	



	Select the Languages tab and click Details. Also, make sure you&#8217;ve already installed the East Asian language files [...]]]></description>
			<content:encoded><![CDATA[<p>While enabling simplified Chinese in both Windows XP and Ubuntu Intrepid Ibex is pretty straightforward, getting traditional Chinese to work is a bit more roundabout.<p>

<h3 class="post-sub-header">To enable in XP&#8230;</h3>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Go to the Control Panel and open Regional and Language Options.</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step01_control-panel.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step01_control-panel_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Select the Languages tab and click Details. Also, make sure you&#8217;ve already installed the East Asian language files by checking the box below Details.</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step02_languages-tab.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step02_languages-tab_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Click Add&#8230; and then select Chinese (Taiwan) for the input language. Microsoft New Phonetic IME 2002a should be selected by default under keyboard layout.</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step03_add-input-lang.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step03_add-input-lang_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">After clicking OK, make sure Microsoft New Phonetic IME 2002a is highlighted, then click on Properties&#8230; and choose the Keyboard Mapping tab. From that list, make sure HanYu Pinyin is selected, and click OK all the way back to the Control Panel.</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step04_keyboard-mapping.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/xp-step03_add-input-lang_thumb.png" /></a>
	</div>
</div>

<h3 class="post-sub-header">To enable in Intrepid&#8230;</h3>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Go to System -&gt; Administration -&gt; Language Support.</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step01_language-support.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step01_language-support_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Scroll down the list and select Chinese. Then check the boxes for Input methods, Additional Fonts, and whatever else you find relevant. Also make sure that you&#8217;ve enabled support to enter complex characters by checking the box under Input method.
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step02_chinese-language-options.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step02_chinese-language-options_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Right-click on the keyboard icon that should have appeared in the top right, near your clock (assuming you haven&#8217;t changed your configuration), and select SCIM Setup.
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step03_scim-setup.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step03_scim-setup_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Select Global Setup under IMEngine, then check 智能拼音 under Chinese (simplified).</p>
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step04_scim-chinese-simplified.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step04_scim-chinese-simplified_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">Left-click on the keyboard icon and choose the Chinese (simplified) input.
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step05_select-chinese.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step05_select-chinese_thumb.png" /></a>
	</div>
</div>

<div class="captioned-thumbnail-horizontal">
	<p class="caption">On the SCIM toolbar that appears, change 中 to 繁 to switch from simplified to traditional input. Note that there have been comments on how traditional Chinese input in Ubuntu isn&#8217;t very smart, with inputs sometime resulting in nonsensical phrases, so be wary of this.
	<div class="thumbnail">
		<a href="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step06_select-traditional.png"><img src="http://www.wongzhongming.com/images/blog/2009_02_05/intrepid-step06_select-traditional_thumb.png" /></a>
	</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/02/05/enabling-traditional-chinese-pinyin-input-on-windows-xp-and-ubuntu-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Subversion and ViewVC on Dreamhost</title>
		<link>http://www.wongzhongming.com/2009/01/29/setting-up-subversion-and-viewvc-on-dreamhost/</link>
		<comments>http://www.wongzhongming.com/2009/01/29/setting-up-subversion-and-viewvc-on-dreamhost/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 04:22:46 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Site Administration]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[ViewVC]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=60</guid>
		<description><![CDATA[While I don&#8217;t normally use source control for personal projects, I figured it would be a handy tool to sync files between numerous computers, and useful for a site that&#8217;s likely to go through many revisions. While setting up Subversion is pretty straightforward on Dreamhost, I sought an explanation for the /home/&#60;username&#62;/svn created after your [...]]]></description>
			<content:encoded><![CDATA[<p>While I don&#8217;t normally use source control for personal projects, I figured it would be a handy tool to sync files between numerous computers, and useful for a site that&#8217;s likely to go through many revisions. While <a href="http://wiki.dreamhost.com/index.php/Subversion#Quick_Start">setting up Subversion</a> is pretty straightforward on Dreamhost, I sought an explanation for the <code>/home/&lt;username&gt;/svn</code> created after your first code import &#8211; it turns out this is where Subversion maintains your repository (I had naively mistaken it for a directory of checked out code). During this search I came across a nice how-to on Bernie Zimmerman&#8217;s blog about <a href="http://www.bernzilla.com/2008/11/15/setting-up-viewvc-on-dreamhost/">setting up ViewVC</a>, an excellent web interface for viewing Subversion repositories, and one that I had used extensively back at Yahoo!.</p>

<p>Once installed, you can access ViewVC by hitting <em class="url">http://domain.com/path/to/viewvc.cgi</em>. For those who prefer a prettier URL (also useful for accessing files directly by path) in the form of <em class="url">http://domain.com/path/to/viewvc/path/to/file</em>, follow the directions in this Bat Country post on <a href="http://steelpangolin.wordpress.com/2008/12/30/7/">setting up Apache mod_rewrite directives</a> to achieve this.</p>

<p>One last feature I felt like adding was the ability to view my repository directly by hitting my top-level SVN URL, rather than entering the full path to ViewVC. To do this, create an index.php file at your domain root with the following code</p>

<p><code>&lt;?php header("Location:http://domain.com/path/to/viewvc"); ?&gt;</code></p>

<p>which will redirect you to ViewVC when you hit <em class="url">http://domain.com/.</em></p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/01/29/setting-up-subversion-and-viewvc-on-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual Booting on the e6400: Part Two &#8211; Setting Up Windows XP</title>
		<link>http://www.wongzhongming.com/2009/01/26/dual-booting-on-the-e6400-part-two-setting-up-windows-xp/</link>
		<comments>http://www.wongzhongming.com/2009/01/26/dual-booting-on-the-e6400-part-two-setting-up-windows-xp/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 17:47:24 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Ext2 IFS]]></category>
		<category><![CDATA[FS-Driver]]></category>
		<category><![CDATA[Laptops]]></category>
		<category><![CDATA[Latitude e6400]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=64</guid>
		<description><![CDATA[As the title suggests, I&#8217;ll only be covering the post-XP install setup for the Latitude e6400, as there are many other resources out there outlining the installation already, like this XP Installation and Upgrade guide from Paul Thurrott&#8217;s SuperSite. Make sure you decide on a partitioning scheme to use for your dual boot system, and [...]]]></description>
			<content:encoded><![CDATA[<p>As the title suggests, I&#8217;ll only be covering the post-XP install setup for the Latitude e6400, as there are many other resources out there outlining the installation already, like this <a href="http://www.winsupersite.com/showcase/windowsxp_sg_clean.asp">XP Installation and Upgrade guide</a> from Paul Thurrott&#8217;s SuperSite. Make sure you decide on a <a href="http://www.wongzhongming.com/2009/01/23/dual-booting-on-the-e6400-part-one-partitioning/">partitioning scheme</a> to use for your dual boot system, and create the Windows partition accordingly. If you choose to follow Paul Thurrott&#8217;s guide, this comes between steps five and six. Just delete the current C: partition, and then create a new partition in the raw space of whatever size you decide on.</p>

<p>Following Dell&#8217;s <a href="http://support.dell.com/support/topics/global.aspx/support/dsn/document?c=us&amp;docid=1A0C0937D62A8739E0401E0A55174744&amp;doclang=en&amp;l=en&amp;s=gen">driver installation guide</a> and getting the setup files from their <a href="http://support.dell.com/support/downloads/index.aspx?c=us&amp;l=en&amp;s=gen">Drivers and Downloads</a> section, an outline of my setup steps is shown below. Unless described as optional, consider it a must-install. Note that it&#8217;s best to download the appropriate files before you begin reformatting and store them on an external hard drive or USB flash drive, as the files should be installed prior to doing a Windows Update. Also, it&#8217;s highly recommended to restart after each installation completes. Lastly, keep in mind that the exact links to software you need may differ from the ones below &#8211; these are the files needed for a e6400 with specs similar to <a href="http://www.wongzhongming.com/2009/01/20/dell-outlet-latitude-e6400-review/">mine</a>.</p>

<ol>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=18898&amp;libid=7&amp;releaseid=R206472&amp;vercnt=3&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">System Software</a> [System Utilities -&gt; Dell Utility: System Software]</p>
		<p>OS updates and patches. This is a must, as other drivers may not work if not installed (I know from experience that the webcam driver won&#8217;t install properly, and may cause Windows to blue screen immediately after login).</p>
	</li>
	<li>
		<a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=1134&amp;libid=27&amp;releaseid=R182522&amp;vercnt=1&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Chipset</a> [Chipset -&gt; Intel Driver: Mobile Chipset]</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=11530&amp;libid=41&amp;releaseid=R207268&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Intel Matrix Storage Manager Driver</a> [SATA Drives -&gt; Intel Driver: Matrix Storage Manager - Notebooks]</p>
		<p>I believe this is a driver for RAID, and as such, may be unnecessary if you do not plan to use it. I installed the driver to be on the safe side.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=11530&amp;libid=41&amp;releaseid=R207267&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Intel Matrix Storage Manager Application</a> [SATA Drives -&gt; Intel Application: Matrix Storage Manager - Notebooks]</p>
		<p>I believe this is an application for managing your RAID setup, and as such, is unnecessary if you do not plan to use it. I skipped this install.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16105&amp;libid=3&amp;releaseid=R206243&amp;vercnt=3&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Audio Adapter</a> [Audio -&gt; IDT Driver: 92HDxxx HD Audio]</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16047&amp;libid=6&amp;releaseid=R199173&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Video Adapter</a> [Video -&gt; nVidia Driver: Quadro NVS 160M]</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=11814&amp;libid=5&amp;releaseid=R204520&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Network Interface Card</a> [Network -&gt; Intel Driver: 825xx Gigabit Platform LAN Network Device]</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16426&amp;libid=27&amp;releaseid=R188776&amp;vercnt=1&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WLH&amp;osl=en&amp;catid=-1&amp;impid=-1">Card Bus Media Driver</a></p>
		<p>Driver for the built-in SD card reader.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16381&amp;libid=25&amp;releaseid=R204009&amp;vercnt=3&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">ControlPoint System Manager</a> [Applications -&gt; Dell Application: ControlPoint System Manager]</p>
		<p>Application to manage general laptop settings like the ambient light level and power management. While not a must-have, it&#8217;s a definite nice-to-have that doesn&#8217;t seem to impact performance much.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16381&amp;libid=25&amp;releaseid=R191548&amp;vercnt=1&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">ControlPoint System Manager XML File</a> [Applications -&gt; Dell XML File: ControlPoint System Manager]</p>
		<p>XML file that contains settings for the System Manager&#8217;s All Day Battery Life Config. Another nice-to-have, but note that System Manager is a prerequisite for this.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16358&amp;libid=25&amp;releaseid=R206690&amp;vercnt=3&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Control Point Security Manager Driver</a> [Applications -&gt; Dell Driver: ControlPoint Security Manager]</p>
		<p>Driver for the USB thumbprint reader. Necessary if you plan to use the reader, but I opted out. Dell&#8217;s Security Manager is a performance hog and slows the entire system down, and fingerprint recognition seemed to be hit or miss during the time I used it. Also note that, supposedly, you won&#8217;t be able to use alternative software due to how it&#8217;s hooked up (see <a href="http://forum.notebookreview.com/showpost.php?p=4215499&amp;postcount=9">the NotebookReview.com post</a>).</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16358&amp;libid=25&amp;releaseid=R204024&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">ControlPoint Security Manager Application</a> [Applications -&gt; Dell Application: ControlPoint Security Manager]</p>
		<p>Software to integrate the fingerprint reader into system security, both on boot as well as Windows login. As mentioned previously, after trying the software in a previous install and finding that it slows the system down, I opted out of installing it.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=15971&amp;libid=25&amp;releaseid=R207458&amp;vercnt=3&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">ControlPoint Connection Manager</a> [Applications -&gt; Dell Application: ControlPoint Connection Manager]</p>
		<p>Manages wireless connection profiles. Unnecessary in my opinion since the Intel WiFi 5100 software comes with Intel&#8217;s connection manager.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=18780&amp;libid=5&amp;releaseid=R194581&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Wireless Network Card</a> [Network -&gt; Intel Driver: Intel(R) WiFi Link 5100]</p>
		<p>This contains both the Intel wireless card driver as well as the connection manager.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=14029&amp;libid=17&amp;releaseid=R202446&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Touchpad / Pointing Stick</a> [Input Device Drivers -&gt; Dell Driver: Touchpad/Pointing Stick]</p>
		<p>Driver for the touchpad and pointing stick. Not absolutely necessary, but enables things like the horizontal and vertical scrolls and is highly recommended.</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=16027&amp;libid=17&amp;releaseid=R200491&amp;vercnt=2&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Webcam Driver</a> [Input Device Drivers -&gt; Creative Labs Driver: Integrated Webcam]</p>
	</li>
	<li>
		<p><a href="http://support.dell.com/support/downloads/format.aspx?c=us&amp;l=en&amp;s=gen&amp;deviceid=17083&amp;libid=25&amp;releaseid=R205118&amp;vercnt=1&amp;formatcnt=0&amp;SystemID=LAT_E6400&amp;servicetag=&amp;os=WW1&amp;osl=en&amp;catid=-1&amp;impid=-1">Webcam Application</a> [Applications -&gt; Dell Application: Webcam Software]</p>
		<p>Dell&#8217;s webcam application that allows you to capture photos and video. Note that this is not a stand-alone file, and requires that the original software be installed from the disc that should have come with your e6400. Considering there are better alternatives out there like <a href="http://www.webcamxp.com/home.aspx">webcamXP</a>, I also passed on this.</p>
	</li>
</ol>

<p>Install any Windows Updates that are needed afterwards, a <a href="http://www.zonealarm.com/security/en-us/free-upgrade-security-suite-zonealarm-firewall.htm">firewall</a> and <a href="http://www.free-av.com/en/download/1/avira_antivir_personal_free_antivirus.html">antivirus</a>, and any other applications you choose. Another piece of recommended software is <a href="http://www.diefer.de/i8kfan/index.html">i8kfanGUI</a>, a Dell-specific utility that allows you to monitor laptop temperatures and fan speeds, as well as giving you control over the fans.</p>

<p>This last step of installing <a href="http://www.fs-driver.org/">FS-Driver/Ext2 IFS</a> to mount your Ubuntu partitions can only be done after Ubuntu has been installed, but I&#8217;ll make mention of it here to keep things together. After installing FS-Driver, follow <a href="http://www.fs-driver.org/screenshots.html">these setup instructions</a> at the official site. If you&#8217;ve already set up the partition properly with 128 byte inodes, there should be no issues with mounting the Ubuntu partitions. If you do run into errors, run the <a href="http://www.fs-driver.org/download/mountdiag.exe">diagnostics program</a> by following the <a href="http://www.fs-driver.org/troubleshoot.html">troubleshooting guide</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/01/26/dual-booting-on-the-e6400-part-two-setting-up-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dual Booting on the e6400: Part One &#8211; Partitioning</title>
		<link>http://www.wongzhongming.com/2009/01/23/dual-booting-on-the-e6400-part-one-partitioning/</link>
		<comments>http://www.wongzhongming.com/2009/01/23/dual-booting-on-the-e6400-part-one-partitioning/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 18:19:21 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Dual Boot]]></category>
		<category><![CDATA[Ext2 IFS]]></category>
		<category><![CDATA[FS-Driver]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NTFS-3G]]></category>
		<category><![CDATA[Partitioning]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.wongzhongming.com/?p=52</guid>
		<description><![CDATA[I&#8217;ve decided to make my dual boot guide a three-part post, to make things easier to follow. I&#8217;ll be covering the partitioning scheme I chose, and the other options available to users in this post. Part two will cover the Windows XP setup, and part three will cover the Ubuntu Intrepid Ibex (8.10) setup. While [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve decided to make my dual boot guide a three-part post, to make things easier to follow. I&#8217;ll be covering the partitioning scheme I chose, and the other options available to users in this post. Part two will cover the Windows XP setup, and part three will cover the Ubuntu Intrepid Ibex (8.10) setup. While these are meant to be guides for configuring the Dell Latitude e6400, the partitioning and Ubuntu posts should be applicable to any system.</p>

<p>My first reformatting run, I partitioned my drive the way most people new to Linux probably do, with a NTFS partition for Windows, and Ext3 / and swap partitions for Ubuntu. Later, I happened upon this <a href="http://www.psychocats.net/ubuntu/partitioning">Psychocats article</a>, and decided to add an additional partition for shared data. The advantage here is that future reformatting or upgrading is made easier by not having to move files off the laptop, or, in the case of Ubuntu, by also being able to save your configuration settings. With software like <a href="http://www.ntfs-3g.org/">NTFS-3G</a> to allow NTFS read/write in Ubuntu, or <a href="http://www.fs-driver.org/">FS-Driver/Ext2 IFS</a> to allow Ext2/3 read/write in Windows, there was little reason to use FAT with its limitations. Both pieces of software are pretty stable, and performance has been good during my one month of use, not having encountered any performance hiccups yet.</p>

<p>The two options available besides FAT were to either have a shared NTFS partition mounted in Ubuntu with NTFS-3G (comes with Intrepid Ibex), or a shared Ext3 partition as /home, and mounted in Windows with FS-Driver. The general opinion in a few forums I visited seemed to be that, with performance being about equal, the more important factor was which OS one plans to use more. In my case, while I planned to use Windows for more intensive things like photo editing, Ubuntu would be my go-to day-to-day OS. With that in mind, I chose to go the shared Ext3 route, partitioning my 160 GB drive as: 20 GiB NTFS Windows | 117 GiB Ext3 /home | 10 GiB Ext3 / | 1 GiB swap. Instead of just mounting /home via FS-Driver* though, I also mounted my Windows partition in Ubuntu, in order to share my Pidgin logs between the two systems, not wanting to deal with symlinking in XP.</p>

<p><strong class="important">* Important thing to note about FS-Driver</strong>: it doesn&#8217;t allow the mounting of filesystems with inodes greater than 128 bytes &#8211; unfortunately, Ubuntu switched to 256 byte inodes with Intrepid Ibex, and doesn&#8217;t have an option to change this during installation. There are two ways around this for those who plan to use FS-Driver with Intrepid (assuming this is a clean install &#8211; those upgrading won&#8217;t encounter this issue). The method recommended on several forums is to partition using a Hardy Heron (8.04) Live CD and GParted, and then to complete the installation with Intrepid. I won&#8217;t be covering this, as I ran into the inode issue after I had completed the install, and was forced to go with the more convoluted method of backing up /home and reformatting with mkfs. I&#8217;ll cover this in part three as part of the Intrepid setup for those who prefer to do things the hard way (or can&#8217;t get their hands on a copy of Hardy).</p>]]></content:encoded>
			<wfw:commentRss>http://www.wongzhongming.com/2009/01/23/dual-booting-on-the-e6400-part-one-partitioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
