<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Linuphoria</title>
	<atom:link href="http://linuphoria.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuphoria.wordpress.com</link>
	<description>Personal Collection of Ubuntu/Linux Tips,Tricks and More</description>
	<lastBuildDate>Mon, 27 Apr 2009 07:46:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='linuphoria.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Linuphoria</title>
		<link>http://linuphoria.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://linuphoria.wordpress.com/osd.xml" title="Linuphoria" />
	<atom:link rel='hub' href='http://linuphoria.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing Eve Online in Ubuntu Jaunty</title>
		<link>http://linuphoria.wordpress.com/2009/04/27/installing-eve-online-in-ubuntu-jaunty/</link>
		<comments>http://linuphoria.wordpress.com/2009/04/27/installing-eve-online-in-ubuntu-jaunty/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 07:42:50 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[General Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=58</guid>
		<description><![CDATA[Since CCP, developers of Eve Online, announced they would no longer support linux releases of their game, folks were forced to fend for themselves when it came to installing the game on their favorite linux distro. As for Ubuntu Jaunty, I scoured the web for a suitable, easy to understand method of getting Eve Online [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=58&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since CCP, developers of Eve Online, announced they would no longer support linux releases of their game, folks were forced to fend for themselves when it came to installing the game on their favorite linux distro. As for Ubuntu Jaunty, I scoured the web for a suitable, easy to understand method of getting Eve Online installed and I found one such solution that may or may not work for most of you.</p>
<ul>
<blockquote>
<li> Check 3d: in a terminal window type:
<pre class="code">glxinfo | grep rendering</pre>
<p>It should show:</p>
<pre class="code">direct rendering: Yes</pre>
<p>If it says No, type:</p>
<pre class="code">lspci -v | grep VGA</pre>
<p>and ask help.<br />
If you have nvidia, and have SLI, use version 180 to avoid pauses in game. Enable backports repository, install the packages: <strong>nvidia-glx-180 nvidia-180-modaliases</strong> and reboot. Your xorg.conf should have these lines in Section &#8220;Device&#8221;</p>
<pre class="code"> Option "Coolbits" "2"
 Option "SLI" "Auto"</pre>
<p>The Coolbits option is needed only if the cards have different memory size (you&#8217;ll get the smallest of the two).</li>
<li>Install the current wine: in a terminal window type:
<pre class="code">wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/winehq.list
sudo apt-get update ; sudo apt-get install wine</pre>
</li>
<li>Configure wine: in a terminal or alt-f2 type: padsp winecfg<br />
Audio settings in winecfg are set to: OSS Driver; Hardware Acceleration: Full; Default Sample Rate 48000; Default Bits Per Sample: 16; Driver Emulation: enabled.</li>
<li>Modify user.reg: Append the following to ~/.wine/user.reg (hit alt-f2 and type gedit ~/.wine/user.reg)
<pre class="code">[Software\\Wine\\Direct3D]
"DirectDrawRenderer"="opengl"
"OffscreenRenderingMode"="fbo"
"PixelShaderMode"="enabled"
"VertexShaderMode"="hardware"
"VideoMemorySize"="256"</pre>
<p>Change the VideoMemorySize value to the size of your video ram.</li>
<li>Winetricks: In a terminal window, type:
<pre class="code">wget http://www.kegel.com/wine/winetricks
sh winetricks winxp vcrun2005sp1 corefonts gecko</pre>
</li>
<li>Install Eve online: Download the <a href="http://www.eveonline.com/download/windows.asp" target="_blank">Premium Graphics content</a> client and install it by double clicking the .exe</li>
<li>Make a custom launcher: Add to the panel or desktop a custom launcher using right click:
<pre class="code">Type: Application
Name: Eve Online
Command: padsp wine explorer /desktop=EVE1,1024x768 "C:\Program Files\CCP\EVE\eve.exe"</pre>
<p>Change the resolution to the same in your desktop for fullscreen, anything lower makes a window. If you need to launch more than one client, make another custom launcher and change the desktop name (change EVE1 to EVE2 or such).</li>
<li>Configure Eve online: Launch the client and go to settings: In the Audio &amp; Chat tab, <strong>turn off Audio Hardware Acceleration</strong> to prevent &#8220;random&#8221; lockups. In the Display &amp; Graphics tab, enable Premium Graphics Content and <strong>set shadow quality to off</strong>. When you login, if you see things in pure black (lights, textures) go back to settings, and turn HDR on, then again turn HDR off. This is done once and remains fixed.</li>
</blockquote>
</ul>
<p><em>*Credit to &#8220;Debeus&#8221; over at eve-search.com for the excellent &#8216;how-to&#8217;</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=58&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2009/04/27/installing-eve-online-in-ubuntu-jaunty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>
	</item>
		<item>
		<title>How to: Compile from source</title>
		<link>http://linuphoria.wordpress.com/2008/12/17/how-to-compile-from-source/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/17/how-to-compile-from-source/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 16:44:12 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[General Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=51</guid>
		<description><![CDATA[As you start to work with linux more you realize that not every program for ubuntu comes in a nice .deb package that you can simple double click like an .exe in windows. Sometimes you have to compile the source code for the program yourself in order to install it. This small guide shows you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=51&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you start to work with linux more you realize that not every program for ubuntu comes in a nice .deb package that you can simple double click like an .exe in windows. Sometimes you have to compile the source code for the program yourself in order to install it. This small guide shows you how to do just that.</p>
<p>First thing you want to do is unzip the source file (it usually comes in a tar.gz format) to your home directory to make compiling a little easier.</p>
<p>Enter in the following commands to begin the compiling process:</p>
<p><strong>sudo apt-get install build-essential<br />
./configure<br />
sudo make</strong></p>
<p><em>Note: the ./configure command may or may not work as some source packages dont have that specific file. If it fails, simply ignore it.</em></p>
<p>Now that we have the source package setup, run the following command:</p>
<p><strong>sudo checkinstall</strong></p>
<p>This will compile the source and create a new .deb package that you can then install from by double clicking.</p>
<p>Your program should now be installed!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=51&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/17/how-to-compile-from-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable NTFS Write Support</title>
		<link>http://linuphoria.wordpress.com/2008/12/15/enable-ntfs-write-support/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/15/enable-ntfs-write-support/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 00:55:09 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[General Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=44</guid>
		<description><![CDATA[As more and more people experiment and eventually dual boot more than one operating system, it&#8217;s becoming quite troublesome for most to be able to read a windows-partitioned drive and vice versa. The obvious major difference between linux and windows is their file system. Windows uses NTFS while Linux/Ubuntu uses an EXT file system. As [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=44&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As more and more people experiment and eventually dual boot more than one operating system, it&#8217;s becoming quite troublesome for most to be able to read a windows-partitioned drive and vice versa. The obvious major difference between linux and windows is their file system. Windows uses NTFS while Linux/Ubuntu uses an EXT file system. As you can see this makes it tough to edit files and documents while working within one OS system like Ubuntu.</p>
<p>Believe it or not, the solution is quite easy to setup in order to get you up and running, writing files from your Windows parition inside Ubuntu.</p>
<p>Let&#8217;s begin..</p>
<p><em><span style="font-size:normal;">Enable NTFS Write Support<br />
</span></em></p>
<p>Navigate over to <strong>System -&gt; Administration -&gt; Synaptic Package Manager</strong></p>
<p>Were going to search for a package called &#8220;<strong>ntfs-config</strong>&#8221; in the search box at the top of the window.</p>
<p>Select the package from the search results and go ahead and hit the apply button.</p>
<p>Once the package is finished installed, you should see a new program if you navigate over to <strong>Applications -&gt; System Tools -&gt; NTFS Configuration Tool</strong></p>
<p>This handy little program will allow us to enable write support on any internal/external drive you have connected to your computer.</p>
<p>Select the drive you want to add write support for and click the apply button.</p>
<p><img class="aligncenter size-full wp-image-47" title="screenshot-ntfs-config" src="http://linuphoria.files.wordpress.com/2008/12/screenshot-ntfs-config.png?w=500" alt="screenshot-ntfs-config"   /></p>
<p>You may or may not have to enter in your ubuntu password to access your newly write-enabled drive, but do so if it requests it.</p>
<p>..and that&#8217;s it! Now you can freely edit and write to any files and documents on your windows drive inside Ubuntu.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=44&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/15/enable-ntfs-write-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>

		<media:content url="http://linuphoria.files.wordpress.com/2008/12/screenshot-ntfs-config.png" medium="image">
			<media:title type="html">screenshot-ntfs-config</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing KDE Desktop in Ubuntu</title>
		<link>http://linuphoria.wordpress.com/2008/12/14/installing-kde-desktop-in-ubuntu/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/14/installing-kde-desktop-in-ubuntu/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 07:14:04 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[General Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=34</guid>
		<description><![CDATA[The default desktop environment that ships with Ubuntu is gnome which you can see pictured below. Although easy to use and quite functional, some of you may prefer a something a bit more graphically-rich. The KDE desktop environment fills that void and offers an aesthetically pleasing desktop similar to that of Windows Vista. Here is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=34&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The default desktop environment that ships with Ubuntu is gnome which you can see pictured below.</p>
<p><img class="aligncenter" title="Gnome Desktop Environment" src="http://techlime.com/wp-content/uploads/2008/07/ubuntu-810-intrepid-ibex-alpha-1.png" alt="" width="500" height="363" /></p>
<p>Although easy to use and quite functional, some of you may prefer a something a bit more graphically-rich. The KDE desktop environment fills that void and offers an aesthetically pleasing desktop similar to that of Windows Vista. Here is a sample shot of what the default KDE desktop looks like.</p>
<p><img class="aligncenter" title="KDE 4 Desktop" src="http://img.photobucket.com/albums/v280/Screwballl/Computer/screenshots/KDE4_1Desktop.jpg" alt="" width="500" height="363" /></p>
<p>To install, simply type in the following command to install the full KDE desktop package:</p>
<blockquote><p><strong>sudo apt-get install kubuntu-desktop</strong></p></blockquote>
<p>During the installation process, you&#8217;ll be asked if you want to make Gnome or KDE your default desktop environment during startup. Don&#8217;t worry which one you choose as your able to switch between the two at the initial login screen if you decide you want to stick with one over the other.</p>
<p>If your asking me which one is best? Well, it&#8217;s more of a personal preference and I&#8217;ve grown fond of Gnome&#8217;s terrific functionality in terms of easy access to my applications among other things. KDE provides a different menu structure that&#8217;s akin to Windows but still provides the same information. Some would say KDE can be a bit &#8220;clunky&#8221; in terms of navigating around the menus and I would have to partially agree.</p>
<p>My advice is to definitely give both a look and decide which one suits your needs. That&#8217;s part of the magic with trying linux &#8212; the freedom to choose. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=34&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/14/installing-kde-desktop-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>

		<media:content url="http://techlime.com/wp-content/uploads/2008/07/ubuntu-810-intrepid-ibex-alpha-1.png" medium="image">
			<media:title type="html">Gnome Desktop Environment</media:title>
		</media:content>

		<media:content url="http://img.photobucket.com/albums/v280/Screwballl/Computer/screenshots/KDE4_1Desktop.jpg" medium="image">
			<media:title type="html">KDE 4 Desktop</media:title>
		</media:content>
	</item>
		<item>
		<title>5 Things To Do After Setting Up Ubuntu Intrepid</title>
		<link>http://linuphoria.wordpress.com/2008/12/13/5-things-to-do-after-setting-up-ubuntu-intrepid/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/13/5-things-to-do-after-setting-up-ubuntu-intrepid/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 05:21:15 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[General Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=23</guid>
		<description><![CDATA[below is a list of things I consider &#8220;Must-Do&#8217;s&#8221; of things that all new users should do upon installing a fresh copy of Ubuntu. Let&#8217;s get started! 1. Installing essential audio/video codecs, DVD Support, Flash and Java Open up a terminal window and paste the following: sudo wget http://www.medibuntu.org/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/medibuntu.list &#38;&#38; wget -q http://packages.medibuntu.org/medibuntu-key.gpg [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=23&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>below is a list of things I consider &#8220;Must-Do&#8217;s&#8221; of things that all new users should do upon installing a fresh copy of Ubuntu.</p>
<p>Let&#8217;s get started!</p>
<p><strong><em>1. Installing essential audio/video codecs, DVD Support, Flash and Java</em></strong></p>
<p>Open up a terminal window and paste the following:</p>
<blockquote><p><strong>sudo wget http://www.medibuntu.org/sources.list.d/intrepid.list -O /etc/apt/sources.list.d/medibuntu.list &amp;&amp; wget -q http://packages.medibuntu.org/medibuntu-key.gpg -O- | sudo apt-key add &#8211; &amp;&amp; sudo apt-get update &amp;&amp; sudo apt-get install -y ubuntu-restricted-extras non-free-codecs w32codecs totem-mozilla libdvdcss2</strong></p></blockquote>
<p><strong><em>2. Configure Compiz Settings</em></strong></p>
<p>Although Ubuntu installs with Compiz, it doesn&#8217;t allow you to configure it&#8217;s many, many options available to you.</p>
<p>Open up another terminal window and type in:</p>
<blockquote><p><strong>sudo apt-get install simple-ccsm</strong></p></blockquote>
<p>After running that, you should find a new option under System &#8211;&gt; Preferences, called CompizConfig Settings Manager.</p>
<p>This will allow you to tweak the many options that are available with Compiz.</p>
<p><strong><em>3. Winrar and 7zip support</em></strong></p>
<p>Type the following in a terminal window:</p>
<blockquote><p><strong>sudo apt-get install p7zip-full</strong></p></blockquote>
<p>This will allow you to read and open up winrar and other zip files.</p>
<p><strong><em>4. Customize your Ubuntu theme</em></strong></p>
<p>Under System &#8211;&gt; Preferences &#8211;&gt; Appearance</p>
<p>You&#8217;ll be able to select from a half-dozen or so of various themes that ship with a fresh copy of Ubuntu Intrepid.</p>
<p>However, if you find all of them not to your tastes, the best place to find new themes can be found at <a title="Gnome Look" href="http://www.gnome-look.org" target="_blank">www.gnome-look.org</a></p>
<p><em><strong>5. Installing Conky</strong></em></p>
<p>Conky is a &#8220;hit-or-miss&#8221; with some folks, but its a very handy program for displaying vital information to you while working in Ubuntu.</p>
<p>To install and customize Conky, visit my previous blog post <a title="Conky Setup" href="http://linuphoria.wordpress.com/2008/12/13/how-to-install-and-customize-conky/" target="_self">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=23&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/13/5-things-to-do-after-setting-up-ubuntu-intrepid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Install &amp; Customize Conky</title>
		<link>http://linuphoria.wordpress.com/2008/12/13/how-to-install-and-customize-conky/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/13/how-to-install-and-customize-conky/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 04:35:02 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[Desktop Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=9</guid>
		<description><![CDATA[You might be wondering what exactly is Conky. It&#8217;s more or less a lightweight, text-based system monitor that sits on your desktop. The information is displayed and updated in real-time and can be setup to be non-intrusive while you use your ubuntu desktop. On top of that, its highly customizeable and can be edited to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=9&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You might be wondering what exactly is Conky. It&#8217;s more or less a lightweight, text-based system monitor that sits on your desktop. The information is displayed and updated in real-time and can be setup to be non-intrusive while you use your ubuntu desktop. On top of that, its highly customizeable and can be edited to your personal tastes.</p>
<p>Here is a what we&#8217;ll be setting up once everything is finished.</p>
<p><img class="aligncenter size-full wp-image-12" title="conkyshell1" src="http://linuphoria.files.wordpress.com/2008/12/conkyshell1.jpg?w=500" alt="conkyshell1"   /></p>
<p>Pretty cool eh?</p>
<p>Obviously some of the information including the main text at the top will be suited to your preferences, but you get the idea. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So let&#8217;s get to it!</p>
<p><em>Step 1: Install Conky</em></p>
<p>Open up a terminal and paste this command.</p>
<blockquote><p><strong>sudo apt-get install conky</strong></p></blockquote>
<p>Next, paste this in the same terminal window.</p>
<blockquote><p><strong>zcat /usr/share/doc/conky/examples/conky.conf.gz &gt; ~/.conkyrc</strong></p></blockquote>
<p>That&#8217;s actually it if you wanted to start using conky but we want to take it a step further and, you guessed it, customize it!</p>
<p><em>Step 2. Customizing</em></p>
<p>In order to customize your recently installed Conky, your going to need to open up the conkyrc file hidden away in your home dir.</p>
<p>Go into your home directory and press ctrl-h to show all hidden files and scroll down until you see the conkyrc file. Open it.</p>
<p>You could start tweaking what&#8217;s in there now but I did the liberty of pasting my custom conky script for you to work off of below:</p>
<blockquote><p><strong> background yes<br />
use_xft yes<br />
xftfont 123:size=8<br />
xftalpha 0.1<br />
update_interval 0.5<br />
total_run_times 0<br />
own_window yes<br />
own_window_type normal<br />
own_window_transparent yes<br />
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager<br />
double_buffer yes<br />
minimum_size 250 5<br />
maximum_width 400<br />
draw_shades no<br />
draw_outline no<br />
draw_borders no<br />
draw_graph_borders no<br />
default_color white<br />
default_shade_color red<br />
default_outline_color green<br />
alignment top_right<br />
gap_x 10<br />
gap_y 10<br />
no_buffers no<br />
uppercase no<br />
cpu_avg_samples 2<br />
net_avg_samples 1<br />
override_utf8_locale yes<br />
use_spacer yes<br />
text_buffer_size 256</p>
<p>TEXT</p>
<p>${font Arial:size=20}${color Tan1}RYLIN&#8217;S${color Ivory}PC</p>
<p>${voffset -90}<br />
${color DimGray}<br />
${font}<br />
${font Arial:bold:size=10}${color Tan1}SYSTEM ${color DarkSlateGray} ${hr 2}<br />
$font${color DimGray}$sysname $kernel $alignr $machine<br />
Intel Q9550 Quad Core$alignr${freq_g cpu0}Ghz<br />
Uptime $alignr${uptime}<br />
File System $alignr${fs_type}</p>
<p>${font Arial:bold:size=10}${color Tan1}PROCESSORS ${color DarkSlateGray}${hr 2}<br />
$font${color DimGray}CPU1  ${cpu cpu1}% ${cpubar cpu1}<br />
CPU2  ${cpu cpu2}% ${cpubar cpu2}<br />
CPU3  ${cpu cpu3}% ${cpubar cpu3}<br />
CPU4  ${cpu cpu4}% ${cpubar cpu4}</p>
<p>${font Arial:bold:size=10}${color Tan1}MEMORY ${color DarkSlateGray}${hr 2}<br />
$font${color DimGray}MEM $alignc $mem / $memmax $alignr $memperc%<br />
$membar</p>
<p>${font Arial:bold:size=10}${color Tan1}HDD ${color DarkSlateGray}${hr 2}<br />
$font${color DimGray}/home $alignc ${fs_used /home} / ${fs_size /home} $alignr ${fs_free_perc /home}%<br />
${fs_bar /home}<br />
/disk $alignc ${fs_used /media/disk} / ${fs_size /media/disk} $alignr ${fs_free_perc /media/disk}%<br />
${fs_bar /media/disk}<br />
/disk-1 $alignc ${fs_used /media/disk-1} / ${fs_size /media/disk-1} $alignr ${fs_free_perc /media/disk-1}%<br />
${fs_bar /media/disk-1}</p>
<p>${font Arial:bold:size=10}${color Tan1}TOP PROCESSES ${color DarkSlateGray}${hr 2}<br />
${color DimGray}$font${top_mem name 2}${alignr}${top mem 2} %<br />
$font${top_mem name 3}${alignr}${top mem 3} %<br />
$font${top_mem name 4}${alignr}${top mem 4} %<br />
$font${top_mem name 5}${alignr}${top mem 5} %</p>
<p>${font Arial:bold:size=10}${color Tan2}NETWORK ${color DarkSlateGray}${hr 2}<br />
$font${color DimGray}IP on eth0 $alignr ${addr eth0}</p>
<p>Downloaded: $alignr  ${totaldown eth0}<br />
Uploaded: $alignr  ${totalup eth0}</p>
<p>${font Arial:bold:size=10}${color Tan2}TIME ${color DarkSlateGray}${hr 2}</p>
<p>${color White} ${font :size=30}$alignc${time %H:%M}<br />
${voffset -30}${font :bold:size=10}$alignc${time %d %b. %Y}<br />
${font :bold:size=8}$alignc${time %A}<br />
$endif</strong></p></blockquote>
<p>Copy that entire set of code and paste over everything currently inside your conkyrc file.</p>
<p>In order to check out our changes, pull up a terminal window and type in <strong>conky</strong>.</p>
<p>Note: after every change to the conkyrc file, you&#8217;ll need to type the following in a terminal window:</p>
<blockquote><p><strong>killall conky</strong> &#8211; this closes the conky program</p>
<p><strong>conky</strong> &#8211; starts conky up again</p></blockquote>
<p>Now to start tweaking things..</p>
<p>Find this area of code</p>
<blockquote><p><strong>TEXT</p>
<p>${font Arial:size=20}${color Tan1}RYLIN&#8217;S${color Ivory}PC</strong></p></blockquote>
<p>Notice where it says &#8220;Rylin&#8217;s&#8221; and &#8220;PC&#8221; at the end of the line? Go ahead and edit that to whatever you like.</p>
<p>To see your changes, simply restart conky as mentioned above.</p>
<p>To tweak the &#8220;Processors&#8221; section, simply find this code</p>
<blockquote><p><strong> ${font Arial:bold:size=10}${color Tan1}PROCESSORS ${color DarkSlateGray}${hr 2}<br />
$font${color DimGray}CPU1  ${cpu cpu1}% ${cpubar cpu1}<br />
CPU2  ${cpu cpu2}% ${cpubar cpu2}<br />
CPU3  ${cpu cpu3}% ${cpubar cpu3}<br />
CPU4  ${cpu cpu4}% ${cpubar cpu4}</strong></p></blockquote>
<p>If you look at it carefully, it shows my four core processors for my Quad Core processor.</p>
<p>If you happen to have a dual core processor, or even a single core, simply delete these lines of code depending on how many you want to display based on your pc specs.</p>
<blockquote><p><strong>CPU4  ${cpu cpu4}% ${cpubar cpu4}</strong></p></blockquote>
<p>If your running a dual-core processor, simply take out CPU3 and CPU4 lines of code. Same applies for one processor by taking out the other three.</p>
<p>From here on out, its simply a matter of looking at what does what and what text is being displayed and altering it to your tastes.</p>
<p>It&#8217;s always a good idea to make a backup of your conkyrc file just in case your conky isn&#8217;t displaying properly or you need to revert back.</p>
<p><em>Step 3: Make Conky run at startup</em></p>
<p>In order to run Conky at startup, head over to:</p>
<p>System &#8211;&gt; Preferences &#8211;&gt; Sessions</p>
<p>Click the Add button</p>
<p>type in <strong>conky</strong> for all three fields and hit the Add button.</p>
<p>Close the Session window and your all set!</p>
<p>Hopefully this tutorial will help some of you setup the ever-popular Conky application!</p>
<p>For a huge (and I mean huge) list of conky setups that you can paste into your conkyrc file, head on over <a title="Conky Setups" href="http://ubuntuforums.org/showthread.php?t=281865&amp;highlight=conky" target="_blank">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=9&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/13/how-to-install-and-customize-conky/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>

		<media:content url="http://linuphoria.files.wordpress.com/2008/12/conkyshell1.jpg" medium="image">
			<media:title type="html">conkyshell1</media:title>
		</media:content>
	</item>
		<item>
		<title>Screencast Your Ubuntu Desktop</title>
		<link>http://linuphoria.wordpress.com/2008/12/13/3/</link>
		<comments>http://linuphoria.wordpress.com/2008/12/13/3/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 03:40:22 +0000</pubDate>
		<dc:creator>rylin24</dc:creator>
				<category><![CDATA[Desktop Tips]]></category>

		<guid isPermaLink="false">http://linuphoria.wordpress.com/?p=3</guid>
		<description><![CDATA[After scouring the web for tips and methods of recording my Ubuntu Intrepid desktop, I managed to gather it all together and output it into an easy to understand method of recording your own desktop! This will be short and to the point, so lets get started: First lets install the application by entering this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=3&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:100%;">After scouring the web for tips and methods of recording my Ubuntu Intrepid desktop, I managed to gather it all together and output it into an easy to understand method of recording your own desktop! This will be short and to the point, so lets get started:</span></p>
<p>First lets install the application by entering this into a terminal window:<em><br />
</em></p>
<blockquote><p><em>sudo apt-get install recordMyDesktop gtk-recordMyDesktop</em></p></blockquote>
<p><em></em>What this does is install the screencast application, recordMyDesktop and allow us to start recording.</p>
<p>Next thing we need to do with the terminal window still open, is enter in the following command:</p>
<blockquote><p>sudo apt-get install mencoder</p></blockquote>
<p><span style="font-size:100%;">This will install our encoding software that will convert the .ogv screen cast format into a usable .avi format that can be uploaded to any popular video site such as youtube.</span></p>
<p><span style="font-size:100%;">Now that we have all the important stuff installed and ready to go, it&#8217;s time to start recording our desktop. Under Sound &amp; Video in Applications menu, you should see gtk-recordMyDesktop. Go ahead and fire it up!</span></p>
<p><span style="font-size:100%;"><a href="http://1.bp.blogspot.com/_jY0swyO4tbo/SUMTgy2E9HI/AAAAAAAAALo/DulUcYyeiRc/s1600-h/recordMyDesktop.png"><img style="display:block;text-align:center;cursor:pointer;width:400px;height:190px;margin:0 auto 10px;" src="http://1.bp.blogspot.com/_jY0swyO4tbo/SUMTgy2E9HI/AAAAAAAAALo/DulUcYyeiRc/s400/recordMyDesktop.png" border="0" alt="" /></a><br />
</span><span style="font-size:100%;">Here you can a few settings allowing you to adjust the video and sound quality of your recording. Although you can lower it to your specifications, I chose to leave them both at 100%. If you want to record the entire desktop, then simply hit the Record button and it will instantly start recording what your doing. If you want only a certain portion of the screen to be recorded, simply drag your mouse across the small preview window to draw out the region you desire.</span></p>
<p>To end the recording, simply double click the small recording icon in your system tray and it will begin translating and saving your screencast recording to your home folder.</p>
<p>The last and final step is to convert the ogv format into .avi format. To do this, simply open up a terminal window and type/paste the following command whenever you want to convert a previously recorded screencast file.</p>
<blockquote><p><span style="font-size:100%;">mencoder -idx input.ogv -ovc lavc -oac mp3lame -o output.avi</span></p></blockquote>
<p><span style="font-size:100%;">replace &#8216;input.ogv&#8217; with the name of your saved ogv recorded file and replace output.avi to whatever name you wish to name your avi.</span></p>
<p>&#8230;and that&#8217;s it! You now have a useable .avi file that you can share and upload to show to your friends.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuphoria.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuphoria.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuphoria.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuphoria.wordpress.com&amp;blog=5834825&amp;post=3&amp;subd=linuphoria&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuphoria.wordpress.com/2008/12/13/3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/502494c40857714471e76b9f5ebb9e94?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rylin24</media:title>
		</media:content>

		<media:content url="http://1.bp.blogspot.com/_jY0swyO4tbo/SUMTgy2E9HI/AAAAAAAAALo/DulUcYyeiRc/s400/recordMyDesktop.png" medium="image" />
	</item>
	</channel>
</rss>
