<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-11291622</id><updated>2011-07-19T08:09:22.222Z</updated><title type='text'>Steve's blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-11291622.post-112712746940790254</id><published>2005-09-19T10:49:00.000Z</published><updated>2005-09-27T06:38:21.443Z</updated><title type='text'>Multimedia Keys on Fluxbox (Gentoo)</title><content type='html'>initially we need to find the "keycode" of the keys, for this use a program called "xev" &lt;br /&gt;&lt;br /&gt;when that's opened, press and release the key you want to map, in the terminal, you will see output like this:&lt;br /&gt;&lt;br /&gt;&lt;font color="blue"&gt;KeyRelease event, serial 31, synthetic NO, window 0x2800001,&lt;br /&gt;root 0x7d, subw 0x0, time 2792224, (-22,86), root:(565,101),&lt;br /&gt;state 0x10, keycode 153, same_screen YES,&lt;br /&gt;XLookupString gives 0 bytes: &lt;/font&gt;&lt;br /&gt;&lt;br /&gt;This is what i got mor my "Next Track" button.  We heed to know from this the "keycode" which in this case is "153"&lt;br /&gt;&lt;br /&gt;after that we need to setup xmodmap&lt;br /&gt;&lt;br /&gt;open an editor and put something like:&lt;br /&gt;&lt;font color="red"&gt;keycode 153 = XF86AudioNext&lt;/font&gt;&lt;br /&gt;i found that it HAD to be:&lt;br /&gt;XF86AudioNext to weork for the next track button.&lt;br /&gt;&lt;br /&gt;Once you have setup all these in xmodmap, save it as ~/.Xmodmap (note CAPITAL X)&lt;br /&gt;&lt;br /&gt;Then edit the ~/.flusbox/keys file to look like:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;None XF86AudioNext :ExecCommand beep-media-player -f&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;here, the XF86AudioNext key is bound to the beep-media-player -f (next track) command.&lt;br /&gt;&lt;br /&gt;Restart X and there you go, sorted :D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112712746940790254?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112712746940790254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112712746940790254' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112712746940790254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112712746940790254'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/09/multimedia-keys-on-fluxbox-gentoo.html' title='Multimedia Keys on Fluxbox (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-112212881692018122</id><published>2005-07-23T12:18:00.000Z</published><updated>2005-07-23T14:31:57.006Z</updated><title type='text'>Firefox NOT using GCC4 (Gentoo)</title><content type='html'>Firstly, firefox doesn't compile properly on gcc-3.x when the gcc4 patch &lt;br /&gt;is applied.  So...&lt;br /&gt;&lt;font color="red"&gt;cd /usr/portage/www-client/mozilla-firefox&lt;/font&gt;&lt;br /&gt;then you need to edit the most recent ebuild file.&lt;br /&gt;&lt;font color="red"&gt;nano -w mozilla-firefox-&lt;version&gt;.ebuild&lt;/font&gt;&lt;br /&gt;in here, look for&lt;br /&gt;&lt;font color="blue"&gt;# GCC4 compile fix, bug #87800&lt;br /&gt;epatch ${FILESDIR}/mozilla-firefox-1.0.4-gcc4.patch&lt;/font&gt;&lt;br /&gt;This is the gcc4 patch being applied. (the part that's causing issues)&lt;br /&gt;in order to remove the patch, simply comment the second line of these 2 &lt;br /&gt;(the first is commented already) so you have:&lt;br /&gt;&lt;font color="red"&gt;# GCC4 compile fix, bug #87800&lt;br /&gt;#epatch ${FILESDIR}/mozilla-firefox-1.0.4-gcc4.patch&lt;/font&gt;&lt;br /&gt;The problem with this.....&lt;br /&gt;Now running &lt;br /&gt;&lt;font color="red"&gt;emerge mozilla-firefox&lt;/font&gt;&lt;br /&gt;will cause an error&lt;br /&gt;&lt;font color="blue"&gt;!!! Digest verification Failed:&lt;br /&gt;!!!    &lt;br /&gt;/usr/portage/www-client/mozilla-firefox/mozilla-firefox-1.0.6-r1.ebuild&lt;br /&gt;!!! Reason: Filesize does not match recorded size&lt;br /&gt;&lt;br /&gt;&gt;&gt;&gt; Please ensure you have sync'd properly. Please try 'emerge sync' and&lt;br /&gt;&gt;&gt;&gt; optionally examine the file(s) for corruption. A sync will fix most &lt;br /&gt;cases.&lt;/font&gt;&lt;br /&gt;emerge --sync does NOT fix this, since we have manually edited the &lt;br /&gt;ebuild file.  instead, we need to remake the digest with:&lt;br /&gt;&lt;font color="red"&gt;ebuild &lt;br /&gt;/usr/portage/www-client/mozilla-firefox/mozilla-firefox-&lt;version&gt;.ebuild &lt;br /&gt;digest&lt;/font&gt;&lt;br /&gt;this will remake the digest, causing the verification to succeed. &lt;br /&gt;Completed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112212881692018122?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112212881692018122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112212881692018122' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112212881692018122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112212881692018122'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/07/firefox-not-using-gcc4-gentoo.html' title='Firefox NOT using GCC4 (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-112207977458096058</id><published>2005-07-23T00:44:00.000Z</published><updated>2005-10-24T21:04:09.086Z</updated><title type='text'>PHP4 with apache2 (Gentoo)</title><content type='html'>Install all the relevent packages:&lt;br /&gt;&lt;font color="red"&gt;emerge apache dev-php/php mod_php mysql&lt;/font&gt;&lt;br /&gt;mysql for mysql aswell hehe&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;nano -w /etc/conf.d/apache2&lt;/font&gt;&lt;br /&gt;change the line:&lt;br /&gt;&lt;font color="blue"&gt;#APACHE2_OPTS="-D SSL"&lt;/font&gt;&lt;br /&gt;FIRSTLY (the one thing i forget to do) UNCOMMENT THIS LINE!!&lt;br /&gt;Then change to:&lt;br /&gt;&lt;font color="blue"&gt;APACHE2_OPTS="-D SSL -D PHP4"&lt;/font&gt;&lt;br /&gt;then&lt;br /&gt;&lt;font color="red"&gt;nano -w /etc/apache2/conf/apache2.conf&lt;/font&gt;&lt;br /&gt;Insert:&lt;br /&gt;&lt;font color="blue"&gt;LoadModule php4_module                  extramodules/libphp4.so&lt;/font&gt;&lt;br /&gt;iirc (That's it)&lt;br /&gt;restart apache&lt;br /&gt;&lt;font color="red"&gt;/etc/init.d/apache2 restart&lt;/font&gt;&lt;br /&gt;and there you have it&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112207977458096058?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112207977458096058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112207977458096058' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207977458096058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207977458096058'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/07/php4-with-apache2-gentoo.html' title='PHP4 with apache2 (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-112207877033555896</id><published>2005-07-23T00:20:00.000Z</published><updated>2005-07-23T00:33:12.336Z</updated><title type='text'>Reinstalling GRUB to the MBR after reinstalling windows (SuSE)</title><content type='html'>Firstly you will need a SuSE install CD to boot off.  If you have the full set of install CD's, only CD1 should be needed, if you have none, download the latest FTP install ISO (u wont need the net for this, just the boot cd).&lt;br /&gt;&lt;br /&gt;Once windows is installed (booooo, why u wanna do that?!) boot off the SuSE install CD.&lt;br /&gt;&lt;br /&gt;Choose &lt;br /&gt;&lt;font color="red"&gt;Manual Install&lt;/font&gt;&lt;br /&gt;then when that's loaded choose:&lt;br /&gt;&lt;font color="red"&gt;Boot from Hard Disk&lt;/font&gt;&lt;br /&gt;or&lt;br /&gt;&lt;font color="red"&gt;Boot Installed System&lt;/font&gt;&lt;br /&gt;(I cant remember which one off the top of my head)&lt;br /&gt;&lt;br /&gt;Then when it asks you which partition, choose the relevent partition that is your &lt;font color="blue"&gt;/&lt;/font&gt; partition.&lt;br /&gt;&lt;br /&gt;This will set off the boot sequence for your SuSE system.&lt;br /&gt;&lt;font color="blue"&gt;NOTE: services WILL fail in this boot, but IGNORE them.&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Once up, load up YaST (probably the Command line one is easier)&lt;br /&gt;&lt;br /&gt;In YaST choose:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;System&lt;/font&gt;&lt;br /&gt;then&lt;br /&gt;&lt;font color="red"&gt;Boot Loader Configuration&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In this boot loader configuration select the &lt;br /&gt;&lt;font color="blue"&gt;Replace Code In MBR&lt;/font&gt;&lt;br /&gt;option, and click/choose &lt;br /&gt;&lt;font color="blue"&gt;edit"&lt;/font&gt;&lt;br /&gt;Check the box, so it &lt;em&gt;DOES&lt;/em&gt; reqrite the MBR.&lt;br /&gt;&lt;br /&gt;Choose &lt;font color="blue"&gt;Finish&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Close YaST, and reboot.&lt;br /&gt;&lt;br /&gt;Now you will have your old GRUB back.  If you have changed any partitions, you will probably have to change them when your in the grub config. But if you've literally just reinstalled windows over an original install, all will be good. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112207877033555896?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112207877033555896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112207877033555896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207877033555896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207877033555896'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/07/reinstalling-grub-to-mbr-after.html' title='Reinstalling GRUB to the MBR after reinstalling windows (&lt;font color=&quot;blue&quot;&gt;SuSE&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-112207728930270083</id><published>2005-07-23T00:02:00.000Z</published><updated>2005-07-23T00:33:52.110Z</updated><title type='text'>Changing GTK themes (Gentoo)</title><content type='html'>Firstly find a suitable gtk theme. &lt;a href="http://www.gnome-look.org"&gt;Gnome-look&lt;/a&gt; might give you a good start.&lt;br /&gt;&lt;br /&gt;Then, after downloading and extracting the theme, you need to find it's &lt;font color="red"&gt;gtkrc&lt;/font&gt; file.&lt;br /&gt;&lt;br /&gt;&lt;font color="blue"&gt;On my computer, all my GTK2 themes are located in:&lt;br /&gt;/usr/share/themes/&lt;br /&gt;with there being a folder for each theme name here.&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;To install your theme here, copy the downloaded tarball there:&lt;br /&gt;&lt;font color="red"&gt;cp theme.tar.gz /usr/share/themes&lt;/font&gt;&lt;br /&gt;then cd there:&lt;br /&gt;&lt;font color="red"&gt;cd /usr/share/themes&lt;/font&gt;&lt;br /&gt;now extract it:&lt;br /&gt;&lt;font color="red"&gt;tar xzvf theme.tar.gz&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Now, assuming your theme was called "theme" your gtkrc path will be something like:&lt;br /&gt;&lt;br /&gt;&lt;font color="blue"&gt;/usr/share/themes/theme/gtkrc&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Once you have done this, test it out with:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;GTK2_RC_FILES=/usr/share/themes/theme/gtkrc gaim&lt;/font&gt;&lt;br /&gt;for example to start gaim using the new theme&lt;br /&gt;&lt;br /&gt;If this works, set it as an environment variable like this:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;export GTK2_RC_FILES=/usr/share/themes/theme/gtkrc&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;then, again, try running a gtk app (this time normally) eg:&lt;br /&gt;&lt;font color="red"&gt;gaim&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;if that works run:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;echo "GTK2_RC_FILES=/usr/share/themes/theme/gtkrc" &gt;&gt; ~/.bashrc&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Next time you reload the config (restart X) it'll be the default.  you can check with:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;echo $GTK2_RC_FILES&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Now whenever you start an app that used GTK2, it'll use that theme ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112207728930270083?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112207728930270083/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112207728930270083' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207728930270083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112207728930270083'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/07/changing-gtk-themes-gentoo.html' title='Changing GTK themes (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-112190780882453551</id><published>2005-07-21T00:52:00.000Z</published><updated>2005-07-23T00:34:44.676Z</updated><title type='text'>Playing with Portage (Gentoo)</title><content type='html'>Having made a script to keep my gentoo box up to date, i came across a problem.&lt;br /&gt;&lt;br /&gt;The script runs:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt; ## Stage 1 - Check if they used -p insteda of -a.&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 2 - Check what flags they specified. (-y or -p).&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 3 - Gather information as to what the user wants to do.&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 4 - Uninstall applications&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 5 - Install requested applications&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 6 - emerge --depclean&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 7 - Fix broken dependencies from emerge --depclean&lt;/li&gt;&lt;br /&gt;&lt;li&gt; ## Stage 8 - Update the system (Only done after a manual --sync)&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;The problem with this came with cedega.&lt;br /&gt;&lt;br /&gt;since emerge didn't register it in /var/lib/portage/world, the emerge --depclean, saw cedega as an unneeed dependency.  The solution was to:&lt;br /&gt;&lt;font color="red"&gt;echo "app-emulation/cedega" &gt;&gt; /var/lib/portage/world&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;PROBLEM 2! &lt;br /&gt;&lt;br /&gt;doing this does in fact solve the issue with --depclean, it's not listed.  BUT when running the emerge -NuD world, it sees newer versions, so tries to update them. Solution:&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;echo "&gt;app-emulation/cedega-4.2.1" &gt;&gt; /etc/portage/package.mask&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;This masks any version of cedega later than 4.2.1 (the version i have), thus meaning that emerge -NuD world will see these newer versions as "unstable" and therefore not install them. Sorted!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-112190780882453551?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/112190780882453551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=112190780882453551' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112190780882453551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/112190780882453551'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/07/playing-with-portage-gentoo.html' title='Playing with Portage (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111306712326814731</id><published>2005-04-09T17:17:00.000Z</published><updated>2005-07-23T00:35:11.756Z</updated><title type='text'>Coppermine Gallery (SuSE)</title><content type='html'>Downloaded latest release of coppermine to install.&lt;br /&gt;&lt;br /&gt;Needed to log into phpMyAdmin to manually create the database (as it couldn't manage that for me)&lt;br /&gt;&lt;br /&gt;Uploading of files not working at the moment..... working on it :)&lt;br /&gt;&lt;br /&gt;Also notice Passwords are not encrypted into database.... working on that too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111306712326814731?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111306712326814731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111306712326814731' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111306712326814731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111306712326814731'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/04/coppermine-gallery-suse.html' title='Coppermine Gallery (&lt;font color=&quot;blue&quot;&gt;SuSE&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111079630749407780</id><published>2005-03-14T10:28:00.000Z</published><updated>2005-07-23T00:35:45.803Z</updated><title type='text'>TV-Out on Geforce FX 5200 (Gentoo)</title><content type='html'>Bought a Geforce FX 5200 this weekend, slapped it in, and booted gentoo.... just worked :) No driver updates or anything.&lt;br /&gt;&lt;a href="http://www.linuxhardware.org/article.pl?sid=01/05/29/2147241&amp;mode=thread"&gt;Linux hardware&lt;/a&gt; guide to setup tv-out (untested as yet)&lt;br /&gt;&lt;br /&gt;Update: 15/03/05 - TV-Out works. Edited xorg.conf file to inslude dual head stuff and TV-Out stuff.&lt;br /&gt;to clone monitor to TV:&lt;br /&gt;&lt;font color="red"&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;Section "Device"&lt;br /&gt;    Identifier  "GraphicForceGF2MX400"&lt;br /&gt;    Driver      "nvidia"&lt;br /&gt;#    VideoRam    65536&lt;br /&gt;    # Insert Clocks lines here if appropriate&lt;br /&gt;    Option "RenderAccel" "true"&lt;br /&gt;    Option "AllowGLXWithComposite" "true"&lt;br /&gt;    Option "TwinView" "1"&lt;br /&gt;    Option "SecondMonitorHorizSync"     "30-50"&lt;br /&gt;    Option "SecondMonitorVertRefresh"   "60"&lt;br /&gt;    Option "MetaModes" "1280x1024, 640x480; 1024x768, 640x480; 800x600, 640x480$&lt;br /&gt;    Option "TVStandard" "PAL-I"&lt;br /&gt;    Option "Xinerama" "0"&lt;br /&gt;    Option "TwinViewOrientation" "Clone"&lt;br /&gt;    Option "ConnectedMonitor" "CRT,TV"&lt;br /&gt;    Option "UseInt10Module" "true"&lt;br /&gt;EndSection&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;to have dual screen setup change     &lt;br /&gt;&lt;font color="red"&gt;Option "TwinViewOrientation" "Clone"&lt;/font&gt;&lt;br /&gt;to:&lt;br /&gt;&lt;font color="red"&gt;Option "TwinViewOrientation" "RightOf"&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;VT's screw up tho, solution in waiting&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111079630749407780?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111079630749407780/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111079630749407780' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111079630749407780'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111079630749407780'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/tv-out-on-geforce-fx-5200-gentoo.html' title='TV-Out on Geforce FX 5200 (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111054386222753280</id><published>2005-03-11T12:23:00.000Z</published><updated>2005-05-18T14:49:07.026Z</updated><title type='text'>FTP install of SuSE linux (Part 1, Getting to the YaST Installer)</title><content type='html'>Guide to installing SuSE 9.2 using the FTP install method&lt;br /&gt;&lt;br /&gt;For different versions siply change any references to "9.2" to the version you want e.g. 9.1, 9.0 etc.&lt;br /&gt;&lt;br /&gt;In order to complete this, a few things are required.  These are shown here:&lt;br /&gt;&lt;br /&gt; - Note of Network Card manufacturer/name (e.g. SIS 900-Based PCI Fast Ethernet Adapter)&lt;br /&gt; - Boot CD&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;First of all we need to download and write the SuSE FTP install iso image.  This is about 20MB in size.&lt;br /&gt;&lt;br /&gt;First of all check the &lt;a href="http://www.novell.com/products/linuxprofessional/downloads/ftp/int_mirrors.html"&gt;SuSE mirrors&lt;/a&gt; list for your nearest mirror of the SuSE FTP site, if there's a 'complete' one, use that one.&lt;br /&gt;&lt;br /&gt;Once in the FTP site, go into the /pub/suse/i386/9.2/boot directory, in there is a file called: boot.iso, this is the CD boot image we need.&lt;br /&gt;&lt;br /&gt;Download this and burn it to disk using your favourite CD-Burning software, and make sure you burn it as an image, not as a data file on the CD.&lt;br /&gt;&lt;br /&gt;Once this is written, we need to boot off the CD.  But first we will check the Network card name etc.  If you have windows installed, just look at the network card properties.  If you have linux, on your computer, the output of &lt;font color="red"&gt;lsmod&lt;/font&gt; should tell you the module you need.  if not, look through &lt;font color="red"&gt;dmesg&lt;/font&gt; and it should tell you what module is loaded for the network card.  For mine it's the sis900 module.&lt;br /&gt;&lt;br /&gt;Now to start the install.&lt;br /&gt;&lt;br /&gt;Put the CD into the computer to install SuSE on, and boot it from the CD (May need some BIOS settings changing in order to do this.&lt;br /&gt;&lt;br /&gt;Once it has booted, you should have a menu asking what you want to do:&lt;br /&gt;&lt;br /&gt; - Boot from Hard Disk&lt;br /&gt; - Installation&lt;br /&gt; - Manual Installation&lt;br /&gt;&lt;br /&gt;are a few options.&lt;br /&gt;&lt;br /&gt;for the FTP install, we want to use the Manual installation.  Select this and hit enter to start the namual installation.  It will load the Linux Kernel (a very basic one that will see us through the installation process) after a short time you should be provided with a Language option, choose the language you want to use.&lt;br /&gt;&lt;br /&gt;After this you will have the Manual installation Main Menu. &lt;br /&gt;&lt;br /&gt; - Settings&lt;br /&gt; - System Information&lt;br /&gt; - Kernel Modules (etc etc.)&lt;br /&gt;Select the Kernel modules as we will want to install it over the network card to do the FTP install, and choose 'Load Network card modules'.&lt;br /&gt;&lt;br /&gt;Scroll down the list to find the network card you have in that computer, choose it and press ok.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You will be asked to enter the Parameters for the card, leave it blank and press enter.&lt;br /&gt;&lt;br /&gt;You will then get a confirmation of wether or not the module was loaded ok.  If not, try a different network module, a common one is the 'RTL8139too' module.&lt;br /&gt;&lt;br /&gt;ok, so the network card module is loaded, so we can communicate with the FTP server, go back out of the module menu into the main menu. and choose 'Start Installation / System'.&lt;br /&gt;&lt;br /&gt;Then choose 'Start Installation / Update'&lt;br /&gt;&lt;br /&gt;As we are doing an FTP install, choose 'Network', and then 'FTP'.&lt;br /&gt;&lt;br /&gt;You will then be asked to setup the network card so it has an IP address and gateway etc.&lt;br /&gt;&lt;br /&gt;Enter a valid IP for the network card (i used 192.168.0.100) and subnet mask (usually 255.255.255.0) and any gateway used to access the internet.  If you have DNS servers, put one of them in the DNS box.&lt;br /&gt;&lt;br /&gt;Enter the IP address of the FTP server, and choose Anonymous ftp login, and no HTTP proxy.  &lt;br /&gt;&lt;br /&gt;It will then connect to the server, and assuming no problems, will ask for the directory on the server.  enter all of what you had after the ftp://ftp.domain.com/ part (including the first /)&lt;br /&gt;&lt;br /&gt;If that is ok, it will then Load data needed to run YaST into the ramdisk (about 60MB).&lt;br /&gt;&lt;br /&gt;Once this has completed, it should load up YaST for you&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;from here, simply continue as though you were installing direct from the CD&lt;br /&gt;&lt;br /&gt;I will try and work on an install guide from this point, but that will be very limited as most of it is straightforward anyway.&lt;br /&gt;&lt;br /&gt;Also, feel free to leave comments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111054386222753280?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111054386222753280'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111054386222753280'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/ftp-install-of-suse-linux-part-1.html' title='FTP install of SuSE linux (Part 1, Getting to the YaST Installer)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111041182284530260</id><published>2005-03-09T23:39:00.000Z</published><updated>2005-07-23T00:36:27.320Z</updated><title type='text'>Installing drip(Gentoo)</title><content type='html'>Tried to emerge drip today...... failed...&lt;br /&gt;&lt;br /&gt;required autoconf &gt;=2.50, but had 2.59&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;emerge -a drip&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;issue unresolved as yet.&lt;br /&gt;&lt;br /&gt;Solution suggestions:&lt;br /&gt;&lt;font color="red"&gt;&lt;br /&gt;emerge --sync&lt;br /&gt;emerge portage -u&lt;br /&gt;aclocal&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;none worked so far...... updates coming&lt;br /&gt;&lt;br /&gt;&lt;font color="green"&gt;Update&lt;/font&gt;&lt;br /&gt;Speaking with loft-306 on IRC channel, decided that drip install was borked, so opted got ogmrip instead which 'had a nice frontend' &lt;br /&gt;&lt;font color="red"&gt;emerge ogmrip&lt;/font&gt;&lt;br /&gt;succeeded :)&lt;br /&gt;though no front end...... now to work out CLI ogmdemux to do everything instead&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111041182284530260?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111041182284530260/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111041182284530260' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111041182284530260'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111041182284530260'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/installing-dripgentoo.html' title='Installing drip(&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111028227702863592</id><published>2005-03-08T11:42:00.000Z</published><updated>2005-07-23T00:37:00.630Z</updated><title type='text'>Iriver H340 (Gentoo)</title><content type='html'>Iriver arrived today.....&lt;br /&gt;edited fstab to include: &lt;br /&gt;&lt;font color="red"&gt;&lt;br /&gt;#USB Mass Storage Devices&lt;br /&gt;/dev/sda1               /mnt/iriverh340 vfat    noauto,users                   0 0&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;and added /mnt/iriverh340 fstab entries to gkrellm to allow clickable mounting/umounting&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111028227702863592?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111028227702863592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111028227702863592' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111028227702863592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111028227702863592'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/iriver-h340-gentoo.html' title='Iriver H340 (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111021286219138686</id><published>2005-03-07T16:27:00.000Z</published><updated>2005-07-23T00:37:08.416Z</updated><title type='text'>Pico/Nano (SuSE 9.2)</title><content type='html'>Got annoyed with not having nano on server, but pico instead, so removed pico (using YaST) and installed nano (from sources at &lt;a href="http://www.nano-editor.org"&gt;Nano-editor.org&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;./configure&lt;br /&gt;make&lt;br /&gt;make install&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;needed ncurses-devel from yast too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111021286219138686?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111021286219138686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111021286219138686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021286219138686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021286219138686'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/piconano-suse-92.html' title='Pico/Nano (&lt;font color=&quot;blue&quot;&gt;SuSE 9.2&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111021181114195387</id><published>2005-03-07T16:09:00.000Z</published><updated>2005-07-23T00:37:14.456Z</updated><title type='text'>GIMP (Gentoo)</title><content type='html'>Got Gimp up and running today...&lt;br /&gt;&lt;br /&gt;&lt;font color="red"&gt;emerge gimp gimp-print&lt;/font&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111021181114195387?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111021181114195387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111021181114195387' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021181114195387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021181114195387'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/gimp-gentoo.html' title='GIMP (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111021082645635091</id><published>2005-03-07T15:52:00.000Z</published><updated>2005-07-23T00:37:55.340Z</updated><title type='text'>Installing Printer/Scanner (Gentoo)</title><content type='html'>Installed HP PSC 1205 Printer/scanner. Downloaded hpinkjet sources from sourceforge.net and compiled it. &lt;br /&gt;&lt;font color="red"&gt;./configure&lt;br /&gt;make&lt;br /&gt;make install&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Printer setup:&lt;br /&gt;&lt;font color="red"&gt;emerge cups&lt;br /&gt;open http://localhost:631/ in firefox. &lt;br /&gt;setup printer through web based interface&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Scanner Setup&lt;br /&gt;&lt;br /&gt;Compile Kernel&lt;br /&gt;&lt;font color="red"&gt;cd /usr/src/linux&lt;br /&gt;make menuconfig&lt;br /&gt;Device Drivers  ---&gt;&lt;br /&gt;    USB support  ---&gt;&lt;br /&gt;        &lt;*&gt;   EHCI HCD (USB 2.0) support&lt;br /&gt;        &lt;*&gt;   OHCI HCD support    &lt;- guide said to take out, but left in for webcam to work&lt;br /&gt;        &lt;*&gt;   UHCI HCD (most Intel and VIA) support&lt;br /&gt;cat /proc/bus/usb/devices&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;make note of product id and vendor id&lt;br /&gt;made sure USE flags include USB&lt;br /&gt;edit /etc/make.conf USE="" line to include usb&lt;br /&gt;install libusb, sane-backends and hotplug (already installed)&lt;br /&gt;&lt;font color="red"&gt;emerge libusb sane-backends&lt;/font&gt;&lt;br /&gt;check sane-backends was merged with usb support&lt;br /&gt;&lt;font color="red"&gt;equery u sane-backends&lt;/font&gt;&lt;br /&gt;should look like following:&lt;br /&gt;&lt;font color="blue"&gt;[ Searching for packages matching sane-backends... ]&lt;br /&gt;[ Colour Code : set unset ]&lt;br /&gt;[ Legend    : Left column  (U) - USE flags from make.conf              ]&lt;br /&gt;[           : Right column (I) - USE flags packages was installed with ]&lt;br /&gt;[ Found these USE variables for media-gfx/sane-backends-1.0.15 ]&lt;br /&gt; U I&lt;br /&gt; + + usb     : Adds USB support to applications that have optional USB support (e.g. cups)&lt;br /&gt; + + gphoto2 : Adds digital camera support&lt;br /&gt; + + ipv6    : Adds support for IP version 6&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;add&lt;br /&gt;&lt;font color="red"&gt;# HP PSC 1205&lt;br /&gt;usb 0x03f0 0x2f11&lt;br /&gt;&lt;/font&gt;&lt;br /&gt;to /etc/sane.d/hp.conf&lt;br /&gt;restart hotplug&lt;br /&gt;&lt;font color="red"&gt;/etc/init.d/hotplug stop&lt;br /&gt;/etc/init.d/hotplug start&lt;br /&gt;sane-find scanner&lt;/font&gt;&lt;br /&gt;should show scanner in output&lt;br /&gt;&lt;font color="red"&gt;emerge -a xsane&lt;/font&gt;&lt;br /&gt;edit /etc/groups&lt;br /&gt;&lt;font color="red"&gt;scanner:x:408:root,&lt;users to allow scanner access&gt;&lt;/font&gt;&lt;br /&gt;xsane should work :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111021082645635091?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111021082645635091/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111021082645635091' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021082645635091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021082645635091'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/installing-printerscanner-gentoo.html' title='Installing Printer/Scanner (&lt;font color=&quot;red&quot;&gt;Gentoo&lt;/font&gt;)'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-11291622.post-111021044688492117</id><published>2005-03-07T15:46:00.000Z</published><updated>2005-07-29T14:19:45.063Z</updated><title type='text'>New Blog</title><content type='html'>My Blog:&lt;br /&gt;&lt;br /&gt;This is my new blog, it will trace what i do with my computers, for my reference and anyone else that wants to follow progress :)&lt;br /&gt;&lt;br /&gt;any code used will be placed in &lt;font color="red"&gt;RED&lt;/font&gt;&lt;br /&gt;and things to note will be &lt;font color="blue"&gt;BLUE&lt;/font&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/11291622-111021044688492117?l=sdousley.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sdousley.blogspot.com/feeds/111021044688492117/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=11291622&amp;postID=111021044688492117' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021044688492117'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/11291622/posts/default/111021044688492117'/><link rel='alternate' type='text/html' href='http://sdousley.blogspot.com/2005/03/new-blog.html' title='New Blog'/><author><name>Steve</name><uri>http://www.blogger.com/profile/08708303806010946375</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
