<?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>Blog of Finster</title>
	<atom:link href="http://finster.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://finster.co.uk</link>
	<description>Technical Notes</description>
	<lastBuildDate>Sun, 10 Jul 2011 15:04:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Enabling mod_rewrite in Apache under Ubuntu Server</title>
		<link>http://finster.co.uk/2011/07/10/enabling-mod_rewrite-in-apache-under-ubuntu-server/</link>
		<comments>http://finster.co.uk/2011/07/10/enabling-mod_rewrite-in-apache-under-ubuntu-server/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 15:04:55 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=218</guid>
		<description><![CDATA[Here&#8217;s some quick instructions on enabling mod_rewrite in Apache under Ubuntu 10.04 Server. sudo a2enmod rewrite sudo vi /etc/apache2/sites-available/default Change &#8220;AllowOverride&#8221; from &#8220;None&#8221; to &#8220;all&#8221; for the /var/www directory. sudo /etc/init.d/apache2 restart That&#8217;s it!]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some quick instructions on enabling mod_rewrite in Apache under Ubuntu 10.04 Server.</p>
<ol>
<li>sudo a2enmod rewrite</li>
<li>sudo vi /etc/apache2/sites-available/default</li>
<li>Change &#8220;AllowOverride&#8221; from &#8220;None&#8221; to &#8220;all&#8221; for the /var/www directory.</li>
<li>sudo /etc/init.d/apache2 restart </li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2011/07/10/enabling-mod_rewrite-in-apache-under-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino with Sparkfun 7-segment Serial Display</title>
		<link>http://finster.co.uk/2011/05/18/arduino-with-sparkfun-7-segment-serial-display/</link>
		<comments>http://finster.co.uk/2011/05/18/arduino-with-sparkfun-7-segment-serial-display/#comments</comments>
		<pubDate>Wed, 18 May 2011 21:17:25 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[arduino]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=206</guid>
		<description><![CDATA[Here&#8217;s a quick example of getting an Arduino working with a Sparkfun 7-Segment Serial Display. This short example just counts up from zero to 9999. Connections Arduino 5v pin to &#8220;VCC&#8221; on LED module Arduino GND pin to &#8220;GND&#8221; on LED module Arduino TX pin to &#8220;RX&#8221; on LED module Source Code int i = [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick example of getting an Arduino working with a <a href="http://www.sparkfun.com/products/9765">Sparkfun 7-Segment Serial Display</a>. This short example just counts up from zero to 9999.</p>
<h2>Connections</h2>
<ul>
<li>Arduino 5v pin to &#8220;VCC&#8221; on LED module </li>
<li>Arduino GND pin to &#8220;GND&#8221; on LED module </li>
<li>Arduino TX pin to &#8220;RX&#8221; on LED module </li>
</ul>
<h2>Source Code</h2>
<p><code><br />
int i = 1;<br />
char buf[12];</p>
<p>void setup() {<br />
  Serial.begin(9600);<br />
  Serial.print("v");<br />
}</p>
<p>void loop() {</p>
<p>  sprintf(buf, "%04d", i);<br />
  Serial.print(buf);</p>
<p>  if(i<9999) i++;<br />
  delay(1000);<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2011/05/18/arduino-with-sparkfun-7-segment-serial-display/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Peerguardian Linux on Ubuntu 10.10</title>
		<link>http://finster.co.uk/2010/11/23/installing-peerguardian-linux-on-ubuntu-10-10/</link>
		<comments>http://finster.co.uk/2010/11/23/installing-peerguardian-linux-on-ubuntu-10-10/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 23:09:04 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=198</guid>
		<description><![CDATA[Here are some quick notes on how to install pgl under Ubuntu 10.10. 1. Add the gpg key to the apt keyring: - gpg --keyserver keyserver.ubuntu.com --recv 9C0042C8 gpg --export --armor 9C0042C8 &#124; sudo apt-key add - 2. Add the repository sources to your /etc/apt/sources.list: - vi /etc/apt/sources.list deb http://ppa.launchpad.net/jre-phoenix/ppa/ubuntu maverick main deb-src http://ppa.launchpad.net/jre-phoenix/ppa/ubuntu maverick [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some quick notes on how to install pgl under Ubuntu 10.10.</p>
<p>1. Add the gpg key to the apt keyring: -</p>
<pre>
gpg --keyserver keyserver.ubuntu.com --recv 9C0042C8
gpg --export --armor 9C0042C8 | sudo apt-key add -
</pre>
<p>2. Add the repository sources to your /etc/apt/sources.list: -</p>
<pre>
vi /etc/apt/sources.list

deb http://ppa.launchpad.net/jre-phoenix/ppa/ubuntu maverick main
deb-src http://ppa.launchpad.net/jre-phoenix/ppa/ubuntu maverick main
</pre>
<p>3. Update packages &#038; install pgl: -</p>
<pre>
sudo apt-get update
sudo apt-get install pgld pglcmd
</pre>
<p> (Answer the questions during installation process. </p>
<p>4. To check status: -</p>
<pre>
sudo pglcmd status</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/11/23/installing-peerguardian-linux-on-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking video codec information via the command-line</title>
		<link>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/</link>
		<comments>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/#comments</comments>
		<pubDate>Mon, 22 Nov 2010 23:04:36 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=194</guid>
		<description><![CDATA[Here are a couple of commands to get he information about a video file in Linux (bitrate etc): - ffmpeg -i foo.avi mplayer -vo null -ao null -identify -frames 0 foo.avi]]></description>
			<content:encoded><![CDATA[<p>Here are a couple of commands to get he information about a video file in Linux (bitrate etc): -</p>
<pre> ffmpeg -i foo.avi </pre>
<pre> mplayer -vo null -ao null -identify -frames 0 foo.avi </pre>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/11/23/checking-video-codec-information-via-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox piix4_smbus Error</title>
		<link>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/</link>
		<comments>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 20:00:23 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=189</guid>
		<description><![CDATA[VirtualBox 3.2.10 gives me the following error message when booting Ubuntu 10.10: - piix4_smbus 0000.00.07.0: SMBus base address uninitialized - upgrade bios or use force_addr=0xaddr This error is caused by VM having no smbus but Ubuntu always trying to load the module. It doesn&#8217;t affect anything but is a bit annoying &#8211; to fix: - [...]]]></description>
			<content:encoded><![CDATA[<p>VirtualBox 3.2.10 gives me the following error message when booting Ubuntu 10.10: -</p>
<pre>piix4_smbus 0000.00.07.0: SMBus base address uninitialized - upgrade bios or use force_addr=0xaddr</pre>
<p>This error is caused by VM having no smbus but Ubuntu always trying to load the module. It doesn&#8217;t affect anything but is a bit annoying &#8211; to fix: -</p>
<p>1. Check module is being loaded: -</p>
<pre>lsmod | grep i2c_piix4</pre>
<p>2. If so, blacklist it in /etc/modprobe.d/blacklist.conf, by adding the following to the end of the file :-</p>
<pre>blacklist i2c_piix4</pre>
<p>3. Update the initramfs</p>
<pre>update-initramfs -u -k all</pre>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/11/16/virtualbox-piix4_smbus-error/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Serial connection to Seagate Dockstar via FTDI USB-Serial Cable</title>
		<link>http://finster.co.uk/2010/10/29/serial-connection-to-seagate-dockstar-via-ftdi-usb-serial-cable/</link>
		<comments>http://finster.co.uk/2010/10/29/serial-connection-to-seagate-dockstar-via-ftdi-usb-serial-cable/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 20:44:48 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[dockstar]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=168</guid>
		<description><![CDATA[Here&#8217;s a quick summary of how to use a FTDI data cable to connect to a Seagate Dockstar. Requirements Xbox 360 DVD power cable ( http://www.dealextreme.com/details.dx/sku.42313 ) Strip of 5 male header pins ( http://www.oomlout.co.uk/male-header-36-pin-x4-p-254.html ) FTDI USB-Serial cable ( http://www.oomlout.co.uk/usb-serial-cable-33v-p-232.html ) Making the Connector Cut the cable of the Xbox power connector in half. [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick summary of how to use a FTDI data cable to connect to a Seagate Dockstar.</p>
<h2>Requirements</h2>
<ul>
<li>Xbox 360 DVD power cable     ( <a href="http://www.dealextreme.com/details.dx/sku.42313">http://www.dealextreme.com/details.dx/sku.42313</a> )</li>
<li>Strip of 5 male header pins  ( <a href="http://www.oomlout.co.uk/male-header-36-pin-x4-p-254.html">http://www.oomlout.co.uk/male-header-36-pin-x4-p-254.html</a> )</li>
<li>FTDI USB-Serial cable  ( <a href="http://www.oomlout.co.uk/usb-serial-cable-33v-p-232.html">http://www.oomlout.co.uk/usb-serial-cable-33v-p-232.html</a> )</li>
</ul>
<h2>Making the Connector</h2>
<ol>
<li>Cut the cable of the Xbox power connector in half.</li>
<li>You&#8217;re interested in the 3 pins at the top left (looking from behind), so seperate these and strip them.</li>
<li>Snap a strip of male header pins so that you have 5 pins. Remove pins #2 and #3</li>
<li>Solder the top left-most pin (GND) to header pin #1</li>
<li>Solder the top next pin (TX) to pin #5</li>
<li>Solder the top third pin (RX) to pin #4</li>
</ol>
<p><a href="http://finster.co.uk/wp-content/uploads/dockstar_connector_1.jpg"><img class="alignnone size-full wp-image-169" title="dockstar_connector_1" src="http://finster.co.uk/wp-content/uploads/dockstar_connector_1.jpg" alt="" width="249" height="238" /></a></p>
<h2>Connecting</h2>
<ol>
<li>Plug pin #1 of the header pins into the socket to connect to the black cable of the USB-serial cable<br />
(this will mean that pin #4 goes to the orange, and #5 to yellow)<a href="http://finster.co.uk/wp-content/uploads/dockstar_connector_2.jpg"><img class="alignnone size-full wp-image-170" title="dockstar_connector_2" src="http://finster.co.uk/wp-content/uploads/dockstar_connector_2.jpg" alt="" width="327" height="248" /></a></li>
<li>Open your dockstar and plug the xbox connector onto the header pins (if you orientate your dockstar so the header pins are at<br />
the top, the xbox top-left wire connects to the dockstar top-left pin)<a href="http://finster.co.uk/wp-content/uploads/dockstar_connector_3.jpg"><img class="alignnone size-full wp-image-171" title="dockstar_connector_3" src="http://finster.co.uk/wp-content/uploads/dockstar_connector_3.jpg" alt="" width="340" height="318" /></a></li>
<li>Plug in your USB-serial cable to your PC</li>
<li>Open putty and use the following connection settings: -<br />
<code> Serial<br />
Serial line: COM5 (or whatever COM port the USB-serial adapter has)<br />
Speed: 115200<br />
Data bits: 8<br />
Stop bits: 1<br />
Parity: none<br />
Flow control: none<br />
</code></li>
<li>Click &#8220;Open&#8221; in putty</li>
<li>Power up the Dockstar</li>
<li>Watch the putty window &#8211; the boot-up messages should appear.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/10/29/serial-connection-to-seagate-dockstar-via-ftdi-usb-serial-cable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Connecting an Arduino to a Seagate Dockstar</title>
		<link>http://finster.co.uk/2010/10/29/connecting-an-arduino-to-a-seagate-dockstar/</link>
		<comments>http://finster.co.uk/2010/10/29/connecting-an-arduino-to-a-seagate-dockstar/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 19:21:50 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[dockstar]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=166</guid>
		<description><![CDATA[Here&#8217;s a quick summary of how to connect your arduino to a Seagate Dockstar. Checking connection 1. Install Plugbox Linux on the Dockstar (via http://plugapps.com/index.php5?title=PlugApps:Pogoplug_Setboot ) 2. Plug in arduino to Dockstar via USB cable 3. Check arduino recognised [root@Plugbox ~]# dmesg The bottom lines should look something like: - [ 126.200168] usb 1-1.3: new [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick summary of how to connect your arduino to a Seagate Dockstar.</p>
<h1>Checking connection</h1>
<p>1. Install Plugbox Linux on the Dockstar (via <a href="http://plugapps.com/index.php5?title=PlugApps:Pogoplug_Setboot">http://plugapps.com/index.php5?title=PlugApps:Pogoplug_Setboot</a> )</p>
<p>2. Plug in arduino to Dockstar via USB cable</p>
<p>3. Check arduino recognised</p>
<p><code>[root@Plugbox ~]# dmesg<br />
</code><br />
The bottom lines should look something like: -</p>
<p><code>[  126.200168] usb 1-1.3: new full speed USB device using orion-ehci and address 4<br />
[  126.382290] usbcore: registered new interface driver usbserial<br />
[  126.382974] USB Serial support registered for generic<br />
[  126.383709] usbcore: registered new interface driver usbserial_generic<br />
[  126.383722] usbserial: USB Serial Driver core<br />
[  126.401088] USB Serial support registered for FTDI USB Serial Device<br />
[  126.401283] ftdi_sio 1-1.3:1.0: FTDI USB Serial Device converter detected<br />
[  126.401569] usb 1-1.3: Detected FT232RL<br />
[  126.401582] usb 1-1.3: Number of endpoints 2<br />
[  126.401592] usb 1-1.3: Endpoint 1 MaxPacketSize 64<br />
[  126.401601] usb 1-1.3: Endpoint 2 MaxPacketSize 64<br />
[  126.401610] usb 1-1.3: Setting MaxPacketSize 64<br />
[  126.402330] usb 1-1.3: FTDI USB Serial Device converter now attached to ttyUSB0<br />
[  126.403067] usbcore: registered new interface driver ftdi_sio<br />
[  126.403080] ftdi_sio: v1.6.0:USB FTDI Serial Converters Driver<br />
</code></p>
<p>4. Check which device to use</p>
<p><code>[root@Plugbox ~]# ls -ltr /dev/ttyU*<br />
crw-rw---- 1 root uucp 188, 0 Oct 29 13:17 /dev/ttyUSB0</code></p>
<h1>Communication via Command Line</h1>
<p>1. Configure serial port (taken from <a href="http://www.arduino.cc/playground/Interfacing/LinuxTTY">http://www.arduino.cc/playground/Interfacing/LinuxTTY</a>)</p>
<p><code>[root@Plugbox ~]# stty -F /dev/ttyUSB0 cs8 19200 ignbrk -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts<br />
</code><br />
(19200 should match the baud rate set via Serial.begin(XXXX) in the arduino program)</p>
<p>2. Read data from arduino: -</p>
<p><code>[root@Plugbox ~]# cat /dev/ttyUSB0<br />
</code><br />
3. Send data to arduino: -</p>
<p><code>[root@Plugbox ~]# echo "Hello Arduino" &gt; /dev/ttyUSB0</code></p>
<h1>Communication via Minicom</h1>
<p>1. Install minicom</p>
<p><code>[root@Plugbox ~]# pacman -Sy minicom<br />
</code><br />
2. Fire up minicom</p>
<p><code>[root@Plugbox ~]# minicom -D /dev/ttyUSB0 -b 19200<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/10/29/connecting-an-arduino-to-a-seagate-dockstar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating EFI String for Asus 8400GS Silent</title>
		<link>http://finster.co.uk/2010/02/14/creating-efi-string-for-asus-8400gs-silent/</link>
		<comments>http://finster.co.uk/2010/02/14/creating-efi-string-for-asus-8400gs-silent/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 20:58:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[hackintosh]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=162</guid>
		<description><![CDATA[There are a number of ways of getting your graphics card working within OS X (in order of difficulty) : - Adding &#8220;GraphicsEnabler=Yes&#8221; to Chameleon /Extra/com.apple.Boot.plist Adding EFI string to Chameleon /Extra/com.apple.Boot.plist Using an injector such as NVInject or NVEnabler Patching your DSDT file The first one didn&#8217;t work for my Asus Silent EN8400GS, so [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of ways of getting your graphics card working within OS X (in order of difficulty) : -</p>
<ul>
<li>Adding &#8220;GraphicsEnabler=Yes&#8221; to Chameleon /Extra/com.apple.Boot.plist</li>
<li>Adding EFI string to Chameleon /Extra/com.apple.Boot.plist</li>
<li>Using an injector such as NVInject or NVEnabler</li>
<li>Patching your DSDT file</li>
</ul>
<p>The first one didn&#8217;t work for my Asus Silent EN8400GS, so here&#8217;s how I generated and added an EFI string.</p>
<p>First, install &#8220;<a href="http://forum.netkas.org/index.php/topic,64.0.html">gfxutil</a>&#8221;</p>
<p>Next, get the location of your graphics card by entering the following: -<br />
gfxutil -f display</p>
<p>You should get something back like this: -</p>
<p>DevicePath = PciRoot(0&#215;1)/Pci(0&#215;1,0&#215;0)/Pci(0&#215;0,0&#215;0)</p>
<p>Next, create a file called &#8220;graphics.plist&#8221; which is the following (but put your settings in): -</p>
<p><span style="color: #ff0000;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;</span></p>
<p><span style="color: #ff0000;">&lt;!DOCTYPE plist PUBLIC &#8220;-//Apple//DTD PLIST 1.0//EN&#8221; &#8220;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#8221;&gt;</span></p>
<p><span style="color: #ff0000;">&lt;plist version=&#8221;1.0&#8243;&gt;</span></p>
<p><span style="color: #ff0000;">&lt;dict&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;PciRoot(0&#215;1)/Pci(0&#215;1,0&#215;0)/Pci(0&#215;0,0&#215;0)&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;dict&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@0,compatible&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;NVDA,NVMac&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@0,device_type&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;display&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@0,name&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;NVDA,Display-A&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@1,compatible&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;NVDA,NVMac&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@1,device_type&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;display&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;@1,name&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;NVDA,Display-B&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;NVCAP&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;data&gt;BAAAAAAAAwAEAAAAAAAABwAAAAA=&lt;/data&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;NVPM&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;data&gt;AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==&lt;/data&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;VRAM,totalsize&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;0&#215;20000000&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;device_type&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;NVDA,Parent&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;model&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;nVidia Geforce 8400GS&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;name&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;display&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;key&gt;rom-revision&lt;/key&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;string&gt;nVidia Geforce 8400GS OpenGL Engine&lt;/string&gt;</span></p>
<p><span style="color: #ff0000;"> &lt;/dict&gt;</span></p>
<p><span style="color: #ff0000;">&lt;/dict&gt;</span></p>
<p><span style="color: #ff0000;">&lt;/plist&gt;</span></p>
<p>Next you need to generate a hex string to be inserted &#8211; run the following command: -</p>
<p>gfxutil -i xml -o hex graphics.plist graphics.hex</p>
<p>This will create a &#8220;graphics.hex&#8221; file in the current directory.</p>
<p>Lastly, copy and paste this string into your /Extra/com.apple.Boot.plist file in the following format: -</p>
<p>&lt;key&gt;device-properties&lt;/key&gt;<br />
&lt;string&gt;640200000100000001000000580200000d00000002010c00d041030a010000000101060000010101060000007fff04001e00000072006f006d002d007200650076006900730069006f006e000000270000006e5669646961204765666f72636520383430304753204f70656e474c20456e67696e6522000000400030002c006400650076006900630065005f00740079007000650000000b000000646973706c6179100000004e00560043004100500000001800000004000000000003000400000000000007000000000e0000006e0061006d00650000000b000000646973706c617914000000400030002c006e0061006d0065000000120000004e5644412c446973706c61792d41100000006d006f00640065006c000000190000006e5669646961204765666f726365203834303047530e0000004e00560050004d000000200000000100000000000000000000000000000000000000000000000000000014000000400031002c006e0061006d0065000000120000004e5644412c446973706c61792d4220000000400031002c0063006f006d00700061007400690062006c00650000000e0000004e5644412c4e564d6163220000005600520041004d002c0074006f00740061006c00730069007a0065000000080000000000002020000000400030002c0063006f006d00700061007400690062006c00650000000e0000004e5644412c4e564d616322000000400031002c006400650076006900630065005f00740079007000650000000b000000646973706c61791c0000006400650076006900630065005f00740079007000650000000f0000004e5644412c506172656e74&lt;/string&gt;</p>
<p>Reboot and voila! You should have Quartz Extreme (QI) and Core Image (CI) enabled &#8211; open up Front Row, if it works then you&#8217;re done!</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/02/14/creating-efi-string-for-asus-8400gs-silent/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Sub-£200 Hackintosh</title>
		<link>http://finster.co.uk/2010/01/23/sub-200-hackintosh/</link>
		<comments>http://finster.co.uk/2010/01/23/sub-200-hackintosh/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 14:56:41 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[hackintosh]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=145</guid>
		<description><![CDATA[Here are the specs of my soon-to-be-built hackintosh&#8230; Gigabyte GA-G31M-ES2L iG31 Socket 775 mATX Motherboard Manuf Code: GA-G31M-ES2L £ 32.35 Intel Celeron Dual Core CPU &#8211; E1500 2.2 GHz (800 MHz) Socket 775 512kb Cache Manuf Code: BX80557E1500 £ 34.63 Asus 8400GS Silent 512MB DDR2 DVI VGA Out PCI-E Graphics Card Manuf Code: 8400GSILENTP512MA £24.86 [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the specs of my soon-to-be-built hackintosh&#8230;</p>
<p style="padding-left: 30px;"><span style="color: #800080;">Gigabyte GA-G31M-ES2L iG31 Socket 775 mATX Motherboard<br />
Manuf Code: GA-G31M-ES2L<br />
<a href="http://www.ebuyer.com/product/152225">£ 32.35</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Intel Celeron Dual Core CPU &#8211; E1500 2.2 GHz (800 MHz) Socket 775 512kb Cache<br />
Manuf Code: BX80557E1500<br />
<a href="http://www.ebuyer.com/product/165381"> £ 34.63</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Asus 8400GS Silent 512MB DDR2 DVI VGA Out PCI-E Graphics Card<br />
Manuf Code: 8400GSILENTP512MA<br />
<a href="http://www.ebuyer.com/product/174131">£24.86</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Crucial 2GB DDR2 800MHz/PC2-6400 RAM<br />
Manuf Code: CT25664AA800<br />
<a href="http://www.ebuyer.com/product/142399"> £ 34.00</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Shiny Piano Black/Silver Slim MicroATX Mini Tower Case With 400W PSU<br />
Manuf Code: 908BL<br />
<a href="http://www.ebuyer.com/product/134832"> £ 31.05</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Netgear GA311 PCI Network Card<br />
Manuf Code: GA311-100PES<br />
<a href="http://www.ebuyer.com/product/60013"> £ 16.49</a></span></p>
<p style="padding-left: 30px;"><span style="color: #800080;">Sony AD-5240S 24x Dual Layer SATA DVD±RW<br />
Manuf Code: AD-5240S-0B<br />
<a href="http://www.ebuyer.com/product/170014"> £ 15.30</a></span></p>
<p style="padding-left: 30px;"><strong><span style="color: #800080;">TOTAL : £ 188.68</span></strong></p>
<p>Ok, I&#8217;ve cheated a little bit &#8211; I already had an old 80GB SATA Hard Drive which I will use for this PC, but they can be picked up for around a tenner on ebay&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/01/23/sub-200-hackintosh/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Installing Torrentflux on the Viglen MPC-L</title>
		<link>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/</link>
		<comments>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 11:49:04 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[revo]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=142</guid>
		<description><![CDATA[This is a quick guide to installing Torrentflux on my Viglen MPC-L. First, make sure that python, mysql-server and mysql-client are installed. Then simply install the software with apt-get: - sudo apt-get install torrentflux Once it is installed, point your web browser at the following location (where a.b.c.d is the IP address of your Viglen).: [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick guide to installing Torrentflux on my Viglen MPC-L.</p>
<p>First, make sure that python, mysql-server and mysql-client are installed.</p>
<p>Then simply install the software with apt-get: -</p>
<pre>    sudo apt-get install torrentflux</pre>
<p>Once it is installed, point your web browser at the following location (where a.b.c.d is the IP address of your Viglen).: -</p>
<p>http://a.b.c.d/torrentflux</p>
<p>&#8230;and then start uploading .torrent files to it.</p>
<p>By default, files are saved in the following location: -</p>
<pre>    /var/cache/torrentflux/</pre>
<p>By default, the ports used are 49160- 49300, so remember to open these on your firewall/router.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2010/01/10/installing-torrentflux-on-the-viglen-mpc-l/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

