<?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>Raymondopedia &#187; System</title>
	<atom:link href="http://lucraymond.net/category/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://lucraymond.net</link>
	<description>Multimedia, programming and more!</description>
	<lastBuildDate>Fri, 04 Nov 2011 01:42:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing Apache2 and PHP 5.4 from source on Ubuntu 11.10</title>
		<link>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/</link>
		<comments>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 14:01:08 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql5]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=230</guid>
		<description><![CDATA[This guide will show you how to install Apache 2.2 (2.2.21) and PHP 5.4 and MySQL 5.6 from the latest source First, we will make sure that [...]]]></description>
			<content:encoded><![CDATA[<h1>This guide will show you how to install Apache 2.2 (2.2.21) and PHP 5.4 and MySQL 5.6 from the latest source</h1>
<p>First, we will make sure that the development environment and libraries are install on your server<br />
Setup Development Environment tools and libraries</p>
<p><code>sudo apt-get update<br />
sudo apt-get -y -q install make g++ flex bison build-essential zlib1g-dev binutils cmake<br />
sudo apt-get -y -q install libmcrypt-dev libmhash-dev libxslt1-dev libtidy-dev libbz2-dev libxml2-dev libssl-dev libmysqlclient16 libmysqlclient16-dev<br />
sudo apt-get -y -q install libpng12-dev libpng12-0 libpng3 libjpeg62 libjpeg62-dev libxpm-dev libpcre3 libpcre3-dev zlib1g zlib1g-dev libltdl-dev libltdl7<br />
sudo apt-get -y -q install pkg-config libcurl4-openssl-dev libfreetype6 libfreetype6-dev libc-client2007e libc-client2007e-dev libkrb5-3 libkrb5-dev<br />
sudo apt-get -y -q install openssl libglobus-openssl libglobus-openssl-dev libcurl4-openssl-dev libicu-dev libicu44 libpspell-dev<br />
sudo apt-get -y -q install linux-libc-dev libc-dev-bin libc-bin libc-client2007e-dev eglibc-source libkrb5-3 libkrb5-dev libkrb53 libkrb5support0<br />
sudo apt-get -y -q install libncurses5-dev libncurses5 ncurses-base ncurses-bin ncurses-term libaio-dev</code></p>
<h1>Installing Apache 2.2.21 from source</h1>
<p><code> wget http://apache.mirror.nexicom.net//httpd/httpd-2.2.21.tar.gz<br />
tar zxf httpd-2.2.21.tar.gz cd httpd-2.2.21<br />
./configure --enable-file-cache --enable-cache --enable-disk-cache --enable-mem-cache --enable-deflate --enable-expires --enable-headers --enable-usertrack --enable-ssl --enable-cgi --enable-vhost-alias --enable-rewrite --enable-so<br />
make -s<br />
sudo make install<br />
sudo mkdir /var/www/<br />
sudo chgrp -R www-data /var/www/</code></p>
<p>Configure Apache2 to start automatically when system is rebooted</p>
<p><code>runlevel (should output a number like 2)<br />
cd /etc/rcX.d/ (replace X with the number you saw when you run 'runlevel') </code></p>
<p>sudo ln -s -T /usr/local/apache2/bin/apachectl S80apache</p>
<p>Easy enough, Apache2 is already installed and ready to serve normal HTML web pages.</p>
<p>You can control the status of the web server with these commands:</p>
<p>Stop the web server<br />
<code>/usr/local/apache2/bin/apachectl stop</code></p>
<h1>Start the web server<br />
<code>/usr/local/apache2/bin/apachectl start</code><br />
Installing MySQL 5.6 from source<br />
<code><br />
sudo groupadd mysql<br />
sudo useradd -r -g mysql mysql </code></h1>
<p>sudo mkdir /var/log/mysql/<br />
sudo chgrp -R mysql /var/log/mysql/</p>
<p>wget http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.3-m6.tar.gz/from/http://mirror.csclub.uwaterloo.ca/mysql/<br />
mv index.html mysql.tar.gz<br />
tar zxf mysql.tar.gz<br />
cd mysql-5.6.3-m6/<br />
mkdir bld<br />
cd bld<br />
cmake -DBUILD_CONFIG=mysql_release ..<br />
sudo make install</p>
<p>cd /usr/local/mysql<br />
sudo chown -R mysql .<br />
sudo chgrp -R mysql .<br />
sudo scripts/mysql_install_db &#8211;user=mysql &#8211;basedir=/usr/local/mysql/ &#8211;datadir=/usr/local/mysql/data</p>
<p>sudo chown -R root .<br />
sudo chown -R mysql data</p>
<p>sudo cp support-files/my-medium.cnf /etc/my.cnf<br />
sudo cp support-files/mysql.server /etc/init.d/mysql.server</p>
<p>Edit configuration file sudo nano /etc/mysql/my.cnf</p>
<p>under [MYSQLD] edit or add the following lines:<br />
<code>basedir=/usr/local/mysql<br />
datadir=/usr/local/mysql/data</code><br />
to save<br />
to exit</p>
<p><code>sudo /usr/local/mysql/bin/mysqld_safe --user=mysql &amp;<br />
sudo /usr/local/mysql/bin/mysqladmin -u root password "NEW PASSWORD"<br />
</code></p>
<p>Installing PHP 5.4 from source</p>
<p><code>wget http://downloads.php.net/stas/php-5.4.0beta2.tar.gz<br />
tar zxf php-5.4.0beta2.tar.gz<br />
cd php-5.4.0beta2/<br />
'./configure' '--disable-short-tags' '--enable-exif' '--with-zlib' '--with-bz2' '--with-openssl' '--with-pcre-regex' '--with-gettext' '--with-mcrypt' '--with-mhash' '--with-iconv' '--with-gd' '--with-jpeg-dir' '--with-png-dir' '--with-zlib-dir' '--with-xpm-dir' '--with-xsl' '--with-tidy' '--with-freetype-dir' '--enable-gd-native-ttf' '--enable-calendar' '--enable-mbstring' '--enable-ftp' '--enable-bcmath' '--enable-sockets' '--enable-dom' '--enable-xml' '--enable-soap' '--enable-libxml' '--enable-session' '--enable-simplexml' '--enable-calendar' '--without-pear' '--enable-mbstring' '--disable-cli' '--with-png-dir=/usr/lib/libpng12.so' '--with-mysql-sock' '--with-mysql=mysqlnd' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' --with-imap-ssl --with-kerberos --with-curl --enable-ftp<br />
make -s<br />
sudo make install</code></p>
<p>If you want to configure PHP in development mode, run this line:<br />
<code>sudo cp php.ini-development /usr/local/lib/php.ini</code></p>
<p>If you want to configure PHP in production mode, run this line:<br />
<code>sudo cp php.ini-production /usr/local/lib/php.ini</code></p>
<p>Configuring Apache2 to run PHP scripts</p>
<p><code>wget http://apache.parentinginformed.com/httpd/mod_fcgid/mod_fcgid-2.3.6.tar.gz<br />
tar zxf mod_fcgid-2.3.6.tar.gz<br />
cd mod_fcgid-2.3.6<br />
APXS=/usr/local/apache2/bin/apxs ./configure.apxs<br />
make<br />
sudo make install </code></p>
<p>You also need to edit Apache2 config file<br />
<code><br />
Order allow,deny<br />
Allow from all<br />
AllowOverride All<br />
Options MultiViews Indexes Includes FollowSymLinks ExecCGI<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making a perfect DVD rip on Windows</title>
		<link>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/</link>
		<comments>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 21:23:56 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[rip]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=322</guid>
		<description><![CDATA[&#160; I just posted a new tutorial to show how to RIP a DVD movie (free) http://lucraymond.net/windows/making-a-perfect-dvd-rip/ &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I just posted a new tutorial to show how to RIP a DVD movie (free)</p>
<p><a title="http://lucraymond.net/windows/making-a-perfect-dvd-rip/" href="http://lucraymond.net/windows/making-a-perfect-dvd-rip/">http://lucraymond.net/windows/making-a-perfect-dvd-rip/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build and install APC extension on Mac OSX 10</title>
		<link>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/</link>
		<comments>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 14:23:01 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[building]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=273</guid>
		<description><![CDATA[If you tried to install the APC extension on the MAC and got the following error: pecl mac error: â€˜apc_regexâ€™ has no member named â€˜nregâ€™ The problem [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lucraymond.net/files/2010/04/mac-osx-leopard.png"><img class="alignright size-thumbnail wp-image-287" title="mac-osx-leopard" src="http://lucraymond.net/files/2010/04/mac-osx-leopard-150x150.png" alt="" width="150" height="150" /></a></p>
<p>If you tried to install the APC extension on the MAC and got the following error:</p>
<p style="padding-left: 30px;"><em>pecl mac error: â€˜apc_regexâ€™ has no member named â€˜nregâ€™</em></p>
<p>The problem is that APC depends on the PCRE library and we need to install it before compiling APC. Here is how to fix it!</p>
<ul>
<li>Open a <strong>TERMINAL</strong> session,Â  type :Â <strong> mkdirÂ  temp </strong></li>
<li>Head up to <a title="download page" href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/" target="_blank">this page</a> and download a PCRE library (try to use the latest one). I took <a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.zip">pcre-8.12.zip</a>, put the file inside the <strong>temp</strong> directory</li>
<li>uncompress the PCRE archive via Finder (or any other way)</li>
</ul>
<p style="padding-left: 60px;"><code><br />
<strong>cdÂ  pcre-x.xx</strong> replace x with the version number (example: cdÂ  pcre-8.12)<br />
.<strong>/configure</strong><br />
<strong>make</strong><br />
<strong>sudo make install</strong><br />
</code></p>
<ul>
<li>now download the latest APC release (<a title="download link APC" href="http://pecl.php.net/get/APC" target="_blank">link here</a>)</li>
<li>uncompress the APC archive via finderÂ  (or terminal by typingÂ Â Â  <strong>tar zxfÂ  APC-X-XXÂ  replace X with archive name and version number</strong> )</li>
<li>type</li>
</ul>
<p style="padding-left: 60px;"><strong><code>cd ~/temp/APC-3.1.9Â Â Â  (change the version number if you're using something different)<br />
phpize</code></strong><br />
<strong> <code> <strong><code>./configure</code></strong><br />
<strong> <code> </code></strong>make</code></strong><br />
<strong> <code> sudo make install </code></strong><code> </code></p>
<p>you should see something similar to this when it&#8217;s done compiling</p>
<p style="padding-left: 30px;"><code>Installing shared extensions:Â Â Â Â  /usr/lib/php/extensions/no-debug-non-zts-20090626/<br />
Installing header files:Â Â Â Â Â Â Â Â Â  /usr/include/php/</code></p>
<p>&nbsp;</p>
<p>Modify your php.ini file to have the extension loaded at php startup</p>
<ul>
<li>Open /private/etc/php.iniÂ Â  (in Finder, select GO menu, select GO TO FOLDER and type /private/etc)</li>
<li>add this line in the Dynamic extensions area</li>
</ul>
<p style="padding-left: 60px;"><code><strong>extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/apc.so</strong><br />
</code></p>
<p>Restart the web server (reboot your machine if your lazy, or go into the System preferences, click on Sharing, un-select Web sharing , wait a few seconds and select it again )</p>
<p>You&#8217;re done, congrats!</p>
<p>&nbsp;</p>
<p>Note:</p>
<p>There is a bug in version APC 3.1.9Â  <img src='http://lucraymond.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>if you get error</p>
<p style="padding-left: 30px;"><code>Fatal error: Unknown: apc_fcntl_unlock failed: in Unknown on line 0</code></p>
<p>Relax! just modify the file apc_lock.h inside the APC folder you created. Edit the following line around lines 155-160</p>
<p>Find the following:</p>
<pre style="padding-left: 30px;"><strong># define apc_lck_rdunlock(a) apc_fcntl_unlock(&amp;a TSRMLS_CC)</strong></pre>
<p>Replace by the following</p>
<pre style="padding-left: 30px;"><strong># define apc_lck_rdunlock(a) apc_fcntl_unlock(a TSRMLS_CC)</strong></pre>
<p>&nbsp;</p>
<p>Recompile APC by doing:</p>
<pre style="padding-left: 30px;"><strong>cd ~/temp/APC-x-xx (replace X with version number) make clean phpize ./configure make sudo make install</strong></pre>
<p>And restart your web server! Too easy !Â  enjoy!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixing VLC and NVidia color profile</title>
		<link>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/</link>
		<comments>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 21:49:31 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Media Center]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bright]]></category>
		<category><![CDATA[brightness]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[colours]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[mudded]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=255</guid>
		<description><![CDATA[&#160; If you have an NVidia card, I recommend you to change a setting on your Nvidia control panel as soon as possible.Â  I was often using [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>If you have an NVidia card, I recommend you to change a setting on your Nvidia control panel as soon as possible.Â  I was often using VLC to play back movies and was puzzled why the black were pictured as dark grays.</p>
<p><a href="http://lucraymond.net/files/2011/06/16-235.jpg"><img class="size-medium wp-image-256 alignleft" title="16-235" src="http://lucraymond.net/files/2011/06/16-235-300x195.jpg" alt="" width="300" height="195" /></a><a href="http://lucraymond.net/files/2011/06/0-255.jpg"> <img class="size-medium wp-image-258 alignleft" title="0-255" src="http://lucraymond.net/files/2011/06/0-255-300x195.jpg" alt="" width="300" height="195" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The picture on the left is greyer and the picture on the right has better contrast. The explanation is that the color palette on our generation of video cards are based on 4 color components ranging from 0 to 255. No every screen is able to reproduce the entire color spectrum so it was a normal practice to limit the range to values between 16 and 235. So instead of having a darkest color with a value of 0 (which gives black), you end up having a darkest color with a value of 16 which is dark grey.</p>
<p>&nbsp;</p>
<p>You can easily fix this yourself, just go into Windows <strong>Control Panel</strong>, and click <strong>Appearance and Personalization</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel1.jpg"><img class="alignnone size-full wp-image-259" title="controlpanel1" src="http://lucraymond.net/files/2011/06/controlpanel1.jpg" alt="" width="893" height="520" /></a></p>
<p>Click <strong>Nvidia Control Panel</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel2.jpg"><img class="alignnone size-full wp-image-260" title="controlpanel2" src="http://lucraymond.net/files/2011/06/controlpanel2.jpg" alt="" width="902" height="548" /></a></p>
<p>Click <strong>Adjust Video Color Settings</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel3.jpg"><img class="alignnone size-full wp-image-261" title="controlpanel3" src="http://lucraymond.net/files/2011/06/controlpanel3.jpg" alt="" width="938" height="699" /></a></p>
<p>&nbsp;</p>
<p>Click on <strong>Advanced</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel4.jpg"><img class="alignnone size-full wp-image-262" title="controlpanel4" src="http://lucraymond.net/files/2011/06/controlpanel4.jpg" alt="" width="938" height="699" /></a></p>
<p>Click on <em>Limited (16-235)</em> next to the <strong>Dynamic Range</strong><em><br />
</em></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel51.jpg"><img class="alignnone size-full wp-image-266" title="controlpanel5" src="http://lucraymond.net/files/2011/06/controlpanel51.jpg" alt="" width="938" height="699" /></a></p>
<p>Change it to <strong>Full (0-255)</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel6.jpg"><img class="alignnone size-full wp-image-264" title="controlpanel6" src="http://lucraymond.net/files/2011/06/controlpanel6.jpg" alt="" width="938" height="699" /></a></p>
<p>Click <strong>Apply </strong>and your done..</p>
<p>You should see a difference if you use a software like VLC. Some software seem to bypass the NVidia control panel and they doesn&#8217;t have this issue.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fixing SMB issue with Mac OSX 10.6.3 update</title>
		<link>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/</link>
		<comments>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 15:31:24 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[10.6.3]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=219</guid>
		<description><![CDATA[You may have noticed problems when trying to save/write/create/delete stuff on a SMB share after updating your Mac to update 10.6.3. The quick turn around is to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://lucraymond.net/files/2010/04/mac-osx-leopard.png"><img class="alignright size-medium wp-image-287" title="mac-osx-leopard" src="http://lucraymond.net/files/2010/04/mac-osx-leopard-300x300.png" alt="" width="300" height="300" /></a></p>
<p>You may have noticed problems when trying to save/write/create/delete stuff on a SMB share after updating your Mac to update 10.6.3. The quick turn around is to edit the smb.conf file (usually find in /etc/samba/smb.conf) and add this line in the  <strong>[GLOBAL]</strong> section:</p>
<p><em>unix extensions = no</em></p>
<p>restart samba and it will work again!</p>
<p>to restart SAMBA:     <em>/etc/init.d/samba restart</em></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install Windows 2008 Easy Print sucessfully</title>
		<link>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/</link>
		<comments>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 00:02:13 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[easy print]]></category>
		<category><![CDATA[easyprint]]></category>
		<category><![CDATA[terminal server]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=195</guid>
		<description><![CDATA[If you&#8217;re not careful, you may have a few issues trying to use the Easy print feature, read the article for a problem free approach Click here [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re not careful, you may have a few issues trying to use the Easy print feature, read the article for a problem free approach</p>
<p><a href="http://lucraymond.net/windows/windows-2008-easy-print-terminal-service-how-to-install-without-failure/">Click here </a>to read article</p>
<p>http://lucraymond.net/windows/windows-2008-easy-print-terminal-service-how-to-install-without-failure/</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a HD Linux based multimedia streaming server PART 1 â€“ (dvd and bluray and more)</title>
		<link>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/</link>
		<comments>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:50:39 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[bluray]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=176</guid>
		<description><![CDATA[I started a new article to show how to build a HD home entertainment streaming server. If you ever wanted to watch Bluray/DVD from anywhere in your [...]]]></description>
			<content:encoded><![CDATA[<p>I started a new article to show how to build a HD home entertainment streaming server. If you ever wanted to watch Bluray/DVD from anywhere in your house, this is for you.</p>
<p>You will learn:</p>
<ul>
<li>how to setup your network</li>
<li>setup a server</li>
<li>stream music</li>
<li>stream pictures</li>
<li>stream DVD movies</li>
<li>stream Bluray movies</li>
<li>access files and documents across any machines</li>
</ul>
<p>You can see the first part of the article <a href="http://lucraymond.net/linux/building-a-hd-linux-based-multimedia-streaming-server-part-1-dvd-and-bluray-and-more/">here</a> :</p>
<p>http://lucraymond.net/linux/building-a-hd-linux-based-multimedia-streaming-server-part-1-dvd-and-bluray-and-more/</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New linux hard disk performance article</title>
		<link>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/</link>
		<comments>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 04:03:20 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=99</guid>
		<description><![CDATA[This article talks about how to measure hard disk performance and give a few tips on how to improve it. You can read the article by clicking [...]]]></description>
			<content:encoded><![CDATA[<p>This article talks about how to measure hard disk performance and give a few tips on how to improve it.</p>
<p><span>You can read the article by <a href="http://www.lucraymond.net/linux/hard-disk-performance-on-linux/">clicking here</a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New iMac, old one was defect</title>
		<link>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/</link>
		<comments>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 18:12:19 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=55</guid>
		<description><![CDATA[I got my new iMac last thursday!! yeahhhh.. this was my Christmas gift but the one I got was defect. Every once in a while, it was [...]]]></description>
			<content:encoded><![CDATA[<p>I got my new iMac last thursday!! yeahhhh.. <span id="more-55"></span><br />
this was my Christmas gift but the one I got was defect. Every once in a while, it was shutting down and I needed to unplug it, wait a while to get it back working again. Since it was bought at FutureShop, I had no problem exchanging it for another one. Will post a picture soon..</p>
<p>Spec:</p>
<p>24&#8243; inch iMac<br />
2.8ghz<br />
4g ram</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

