
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.funtoo.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.funtoo.org/api.php?action=feedcontributions&amp;user=D2+racing&amp;feedformat=atom</id>
		<title>Funtoo Linux - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.funtoo.org/api.php?action=feedcontributions&amp;user=D2+racing&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/Special:Contributions/D2_racing"/>
		<updated>2013-05-24T05:49:10Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.20.6</generator>

	<entry>
		<id>http://www.funtoo.org/wiki/Talk:Boot_Methods</id>
		<title>Talk:Boot Methods</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/Talk:Boot_Methods"/>
				<updated>2013-01-23T11:57:47Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: Created page with &amp;quot;More info here :  Kernel STUB : http://blog.realcomputerguy.com/2012/05/efi-stub-booting-without-bootloader.html  UEFI stuff :  http://www.rodsbooks.com/efi-bootloaders/  My F...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;More info here : &lt;br /&gt;
Kernel STUB :&lt;br /&gt;
http://blog.realcomputerguy.com/2012/05/efi-stub-booting-without-bootloader.html&lt;br /&gt;
&lt;br /&gt;
UEFI stuff : &lt;br /&gt;
http://www.rodsbooks.com/efi-bootloaders/&lt;br /&gt;
&lt;br /&gt;
My French version : https://www.funtoo-quebec.org/wiki/index.php/UEFI&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/Boot_Methods</id>
		<title>Boot Methods</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/Boot_Methods"/>
				<updated>2013-01-23T11:56:47Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: /* Pure UEFI */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the various methods that can be used to set up a disk to boot Funtoo Linux. If you have more than one disk, choose a single disk to serve as your boot disk.&lt;br /&gt;
&lt;br /&gt;
=== Pure MBR + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This option is the &amp;quot;classic&amp;quot; way to boot Funtoo Linux and uses traditional MBR partitions, which have existed since the origin of the PC. Here is the typical disk layout:&lt;br /&gt;
&lt;br /&gt;
* MBR at beginning of boot disk&lt;br /&gt;
* MBR partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* MBR partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* MBR partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how the boot process works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the MBR from your boot disk (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== GPT + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This is a more modern way to boot Linux. It uses MBR for booting but uses the more modern GPT partition scheme. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* GPT partition 2 type 0xEF02, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is the ''boot loader partition'' (this contains a fake MBR).&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 4, &amp;lt;tt&amp;gt;/dev/sda4&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this hybrid scheme works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the fake MBR from your boot disk(/dev/sda2) (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from a small (a few MB) GPT partition on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== UEFI + GRUB ===&lt;br /&gt;
&lt;br /&gt;
UEFI is a new-style firmware that is used for booting. It is generally available on all new PCs (2012 and newer) and may be available on older systems as well. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (&amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; aka &amp;quot;FAT32&amp;quot;).&lt;br /&gt;
* GPT partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI (contained in your motherboard's firmware) loads the Bootmanager entry from the RW NVRAM inside your motherboard. &lt;br /&gt;
# If there's a valid entry that contains Grub, then the GRUB boot loader code from your &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem will be loaded. &lt;br /&gt;
# UEFI can read from &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; partitions directly, which is why we use &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; instead of the normal &amp;lt;tt&amp;gt;ext2&amp;lt;/tt&amp;gt; for &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs from the &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== Pure UEFI ===&lt;br /&gt;
&lt;br /&gt;
A Pure UEFI boot is also possible. The partitioning scheme is the same as the UEFI + GRUB scheme, above.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI (contained in your motherboard's firmware) loads the Bootmanager entry from the RW NVRAM inside your motherboard.&lt;br /&gt;
#  UEFI loads the Linux kernel STUB and initramfs directly, and runs the Linux kernel to start Funtoo Linux.&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/Boot_Methods</id>
		<title>Boot Methods</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/Boot_Methods"/>
				<updated>2013-01-23T11:54:35Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: /* UEFI + GRUB */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the various methods that can be used to set up a disk to boot Funtoo Linux. If you have more than one disk, choose a single disk to serve as your boot disk.&lt;br /&gt;
&lt;br /&gt;
=== Pure MBR + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This option is the &amp;quot;classic&amp;quot; way to boot Funtoo Linux and uses traditional MBR partitions, which have existed since the origin of the PC. Here is the typical disk layout:&lt;br /&gt;
&lt;br /&gt;
* MBR at beginning of boot disk&lt;br /&gt;
* MBR partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* MBR partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* MBR partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how the boot process works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the MBR from your boot disk (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== GPT + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This is a more modern way to boot Linux. It uses MBR for booting but uses the more modern GPT partition scheme. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* GPT partition 2 type 0xEF02, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is the ''boot loader partition'' (this contains a fake MBR).&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 4, &amp;lt;tt&amp;gt;/dev/sda4&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this hybrid scheme works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the fake MBR from your boot disk(/dev/sda2) (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from a small (a few MB) GPT partition on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== UEFI + GRUB ===&lt;br /&gt;
&lt;br /&gt;
UEFI is a new-style firmware that is used for booting. It is generally available on all new PCs (2012 and newer) and may be available on older systems as well. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (&amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; aka &amp;quot;FAT32&amp;quot;).&lt;br /&gt;
* GPT partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI (contained in your motherboard's firmware) loads the Bootmanager entry from the RW NVRAM inside your motherboard. &lt;br /&gt;
# If there's a valid entry that contains Grub, then the GRUB boot loader code from your &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem will be loaded. &lt;br /&gt;
# UEFI can read from &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; partitions directly, which is why we use &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; instead of the normal &amp;lt;tt&amp;gt;ext2&amp;lt;/tt&amp;gt; for &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs from the &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== Pure UEFI ===&lt;br /&gt;
&lt;br /&gt;
A Pure UEFI boot is also possible. The partitioning scheme is the same as the UEFI + GRUB scheme, above.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI loads the Linux kernel and initramfs directly, and runs the Linux kernel to start Funtoo Linux.&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/Boot_Methods</id>
		<title>Boot Methods</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/Boot_Methods"/>
				<updated>2013-01-23T11:52:25Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: /* MBR/GPT + GRUB */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes the various methods that can be used to set up a disk to boot Funtoo Linux. If you have more than one disk, choose a single disk to serve as your boot disk.&lt;br /&gt;
&lt;br /&gt;
=== Pure MBR + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This option is the &amp;quot;classic&amp;quot; way to boot Funtoo Linux and uses traditional MBR partitions, which have existed since the origin of the PC. Here is the typical disk layout:&lt;br /&gt;
&lt;br /&gt;
* MBR at beginning of boot disk&lt;br /&gt;
* MBR partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* MBR partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* MBR partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how the boot process works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the MBR from your boot disk (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== GPT + GRUB ===&lt;br /&gt;
&lt;br /&gt;
This is a more modern way to boot Linux. It uses MBR for booting but uses the more modern GPT partition scheme. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (typically ext2)&lt;br /&gt;
* GPT partition 2 type 0xEF02, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is the ''boot loader partition'' (this contains a fake MBR).&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 4, &amp;lt;tt&amp;gt;/dev/sda4&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this hybrid scheme works:&lt;br /&gt;
&lt;br /&gt;
# The system BIOS loads the fake MBR from your boot disk(/dev/sda2) (containing stage1 of the GRUB boot loader) and runs it.&lt;br /&gt;
# Extra boot-related code is loaded by the GRUB stage1 from a small (a few MB) GPT partition on the disk.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== UEFI + GRUB ===&lt;br /&gt;
&lt;br /&gt;
UEFI is a new-style firmware that is used for booting. It is generally available on all new PCs (2012 and newer) and may be available on older systems as well. Here's the disk layout:&lt;br /&gt;
&lt;br /&gt;
* ''no MBR is installed or required''&lt;br /&gt;
* GPT partition 1, &amp;lt;tt&amp;gt;/dev/sda1&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem (&amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; aka &amp;quot;FAT32&amp;quot;).&lt;br /&gt;
* GPT partition 2, &amp;lt;tt&amp;gt;/dev/sda2&amp;lt;/tt&amp;gt; is ''swap''.&lt;br /&gt;
* GPT partition 3, &amp;lt;tt&amp;gt;/dev/sda3&amp;lt;/tt&amp;gt; is the &amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt; (root) filesystem.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI (contained in your motherboard's firmware) loads the GRUB boot loader code from your &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem. UEFI can read from &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; partitions directly, which is why we use &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; instead of the normal &amp;lt;tt&amp;gt;ext2&amp;lt;/tt&amp;gt; for &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Now, the boot loader is able to run and load the Linux kernel and initramfs from the &amp;lt;tt&amp;gt;vfat&amp;lt;/tt&amp;gt; &amp;lt;tt&amp;gt;/boot&amp;lt;/tt&amp;gt; filesystem, and start Funtoo Linux.&lt;br /&gt;
&lt;br /&gt;
=== Pure UEFI ===&lt;br /&gt;
&lt;br /&gt;
A Pure UEFI boot is also possible. The partitioning scheme is the same as the UEFI + GRUB scheme, above.&lt;br /&gt;
&lt;br /&gt;
Here's how this boot scheme works:&lt;br /&gt;
&lt;br /&gt;
# UEFI loads the Linux kernel and initramfs directly, and runs the Linux kernel to start Funtoo Linux.&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/User:D2_racing</id>
		<title>User:D2 racing</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/User:D2_racing"/>
				<updated>2012-11-15T13:41:06Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: d2_racing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Person&lt;br /&gt;
|Full name=Sylvain Alain&lt;br /&gt;
|Email=d2_racing@hotmail.com&lt;br /&gt;
|Nick=d2_racing&lt;br /&gt;
|Geoloc=46.784751, -71.3550042&lt;br /&gt;
|Location name=Ste-Foy,Québec,Canada&lt;br /&gt;
|Roles={{Role&lt;br /&gt;
|Role type=Staff&lt;br /&gt;
|Role desc=Staffer&lt;br /&gt;
|Start date=2010/09/01&lt;br /&gt;
}}&lt;br /&gt;
|Maintains=&lt;br /&gt;
|Blogs=&lt;br /&gt;
}}&lt;br /&gt;
Sylvain Alain was born in March 26 1979. He owned a computer for the first time when he was 10, a Tandy 1000 SL2 without a HDD. After finishing his High School(École secondaire), he went to the CEGEP(exist only in Quebec) to complete his CEGEP diploma in computer science (DEC Technologie des Systèmes Ordinés). In 2000, he started to work as a programmer for the Gouvernment IRS in Quebec City. Years later, he was promote as Security Analyst for the Gouvernment. &lt;br /&gt;
&lt;br /&gt;
He started to use Linux in 1997 when he had to install a Red Hat CD to pass an exam. At that time, Linux was use a lot at his CEGEP, because it was the first CEGEP to ban Microsoft product. Indeed, he didn't have the chance to code a single line inside a Microsoft Environment....still today :P&lt;br /&gt;
&lt;br /&gt;
He started to use Linux on daily based during the year 2002-2003 with Debian Woody,Fedora Core 2 and 3, Ubuntu, Mandrake 10 etc ...&lt;br /&gt;
&lt;br /&gt;
He started to use Gentoo back in 2005 after a course at the University Laval in Quebec City.&lt;br /&gt;
&lt;br /&gt;
He joined the Gentoo Global moderator staff in december 2008 because of his French/English knowledge and also because of his technical skills. &lt;br /&gt;
&lt;br /&gt;
He started to use Funtoo when Daniel Robbins released one of the first versions of Metro(1.3) back in 2008-2009 to build some custom Gentoo-Quebec stage3.&lt;br /&gt;
&lt;br /&gt;
Finally, in September 2010, he started with the same 4 friends Funtoo-Quebec website(Guy Fontaine,Laurent Duchesne,Claude Fleury,Bernard Tremblay) to help his good friend Daniel Robbins and to offer the French support for Funtoo. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
He created with his 4 friends Gentoo-Quebec website in december 2007 after using Gentoo for 2 years on daily base. And in September 2010, Funtoo-Quebec was officially create to support the French community.&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/User_talk:D2_racing</id>
		<title>User talk:D2 racing</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/User_talk:D2_racing"/>
				<updated>2012-11-12T03:46:54Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: Created page with &amp;quot;I want to use the new format, so I need to delete it first.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I want to use the new format, so I need to delete it first.&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	<entry>
		<id>http://www.funtoo.org/wiki/User:D2_racing</id>
		<title>User:D2 racing</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/wiki/User:D2_racing"/>
				<updated>2012-11-12T03:45:24Z</updated>
		
		<summary type="html">&lt;p&gt;D2 racing: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>D2 racing</name></author>	</entry>

	</feed>