Forewarning
This IS an advanced install guide for gentoo linux, it is assuming you have knowledge of gentoo and gnu/linux in general!
-----
The most hardcore and up-to-date of its kind!
The RIGHT way to get a GCC 4.0 based system!
-----
Conrad Install 1.0 Development
Working on new plans for the Conrad install method upgrade to 1.0
* FOUND a more optimized make.conf (Open for suggestions!)
* Devising 3 Methods (Insane = LDFLAGS+Bdirect+Glibc-2.3.90*+New CFLAGS, LSANE = LDFLAGS+New CFLAGS, SFLBSAL "settle for less but still a lot"= new CFLAGS)
the FOLLOWING CFLAGS WILL be used by the new version
Code: Select all
CFLAGS="-O2 -march=athlon-xp -mtune=athlon-xp -fomit-frame-pointer -ftracer -pipe"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS} -fvisibility-inlines-hidden"
LDFLAGS="-Wl,-O1 -Wl,--sort-common -s,-Wl, -Bdirect"* Slightly different toolkit build process
* e17 instructions
<!Looking for Suggestions!>
------
For an automated version of this install method See
Lucky-1.0.1 'Piñata'
------
CONRAD IRC CHANNEL
Join - #conrad on FreeNode (no longer #conrad-gentoo)
FOR REISER4 AS MENTIONED IN GUIDE...
You need the Conrad Install LiveCD
http://forums.gentoo.org/viewtopic-t-405729.html
-----
NOTICE:
The Conrad method is not supported in any way by the Gentoo Linux Foundation.
Well, I love the gentoo foundation, but it is the truth and the right thing to say
-----
11/24/05 - Upgraded to 0.7.5 - Safety First
-----
The only guide with GCC 4.0.x/latest support!
The only guide with 100% Reiser4/Without copying the filesystem!
The only guide that is updated almost EVERY Day!
-----
0.7.5 - "Safety First"
* Revised to old method (4.0.2)
* Fixed make.conf
<REASON: The new GCC 4.1 snapshot apparently conflicted with the CFLAGS>
-----
Various Fixes/Updates - 0.7.5
None
-----
CONRAD Currently installs with (GCC 4.0, GLIBC 2.3.6, Binutils 2.16.9x)
-----
Conrad Development Team
!WooHoo!
(/Builder/Tester/Scripter/Graphic\Web Designer) - Cheater1034
(Scripter-Lucky/Tester/IRC) - Brainiac Ghost
(Scripter-Lucky/Tester) - mdshort
-----
This is a hardcore gentoo installation guide - When you reboot and complete your installation process, you may fly into the wall behind you and break something on count of the incredible speed that will be harnessed after installing gentoo through The Official Conrad Gentoo Install
-----
As always, this is not supported by gentoo - This is experimental - For advanced users only - So on and so forth
-----
Version: 0.7.5 "Safety First"
-----
IMPORTANT
* GCC 4.X is unsupported and EXPERIMENTAL/MASKED!
* Glibc-2.3.90* is a pre-release/cvs/unsupported snapshot!
* Binutils 2.16.90* is a pre-release/cvs/unsupported snapshot!
* DO NOT POST BUGS REGARDING UNSUPPORTED SOFTWARE TO GENTOO!
-----
The Guide Begins...
-----
Getting Started
Well, there is one last chance for you to turn back - remember CONRAD is not responsible for Heart Attacks, head injuries, or any other injury that may occur after you boot your system.
-----
Oh well, stop hearing me talk about how fast it is, learn how to make it that fast.
1 - The LiveCD
1.1 - First of all, we are going to download the LATEST Conrad Gentoo Installation LiveCD - This is required for reiser4 installation
REISER4 IS NOT REQUIRED! If you do not want to use reiser4, you can use this livecd, or the Gentoo liveCD
Code: Select all
http://bfgraphics.net/conrad/releases2 -Preparing the Network
2 - Make sure the network is working properly - Accomplish this my doing "ping google.com" or "ifconfig" in order to test the internet connection, if it is not working by default, try...
Code: Select all
net-setup eth0Code: Select all
dhcpcd eth03.1 - View the hard disk configuration
Code: Select all
# hdparm -i /dev/hda
Code: Select all
hdparm -tT /dev/hdaCode: Select all
hdparm -d1 -c1 -X69 /dev/hda4.1 Using Fdisk
Code: Select all
# fdisk /dev/hda
Command (m for help): p
Disk /dev/hda: 240 heads, 63 sectors, 2184 cylinders
Units = cylinders of 15120 * 512 bytes
Device Boot Start End Blocks Id System
/dev/hda1 1 14 158760 83 Linux # boot
/dev/hda2 15 49 264600 82 Linux swap # swap
/dev/hda3 50 70 remainder 83 Linux # root
Code: Select all
Something like this
Partition File System ID Size Description
/dev/hda1 ext2 83 100 MB Boot partition
/dev/hda2 (swap) 82 512 MB Swap partition
/dev/hda3 Reiser4 83 Remainder Root Partition4.3 - Creating your partitons - Reiser4/reiserfs/ext3 for root, ext2/ext3 for boot, swap for swap
Code: Select all
# mkfs.reiser4 /dev/hda3
# mkfs.ext2 /dev/hda1
# mkswap /dev/hda2
# swapon /dev/hda2
Code: Select all
# mount /dev/hda3 /mnt/gentoo
# mkdir /mnt/gentoo/proc && mkdir /mnt/gentoo/boot
# mount -t proc none /mnt/gentoo/proc
# mount /dev/hda1 /mnt/gentoo/boot5 - Setting up for a chroot
5.1 - Downloading and extracting a stage3 tarball
Code: Select all
# cd /mnt/gentoo
Choose and download your architecture here... (NPTL Requires i586 or higher)
http://gentoo.osuosl.org/releases/x86/2005.1-r1/stages/5.2 - Downloading and extracting a portage snapshot
Code: Select all
# http://distfiles.gentoo.org/snapshots/portage-latest.tar.bz2
# tar jxvf portage-latest.tar.bz2 -C /mnt/gentoo/usrCode: Select all
#cp /etc/resolv.conf /mnt/gentoo/etc/resolv.conf
# mount -t proc none /mnt/gentoo/proc
# mount -o bind /dev /mnt/gentoo/dev6.1 - Chrooting and Running env-update;source /etc/profile
Code: Select all
# chroot /mnt/gentoo /bin/bash
# env-update; source /etc/profileCode: Select all
# emerge sync7.1 - Creating a new make.conf
We will create a new make.conf here, here's what We'll do.
Code: Select all
# rm /etc/make.confCode: Select all
CFLAGS="-O2 -march=YOURARCH -fomit-frame-pointer -pipe"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
ACCEPT_KEYWORDS="~x86"
PORTAGE_TMPDIR=/var/tmp
PORTDIR=/usr/portage
PORT_LOGDIR=/var/log/portage
PORTDIR_OVERLAY=/usr/local/portage
GENTOO_MIRRORS="http://gentoo.osuosl.org http://www.ibiblio.org/pub/Linux/distributions/gentoo"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
PORTAGE_NICENESS=10
AUTOCLEAN="yes"
FEATURES="ccache distlocks userpriv"
USE="nptl nptlonly pic"
Code: Select all
#mkdir -p /var/log/portage
#mkdir -p /usr/local/portage8.1 - Adding Necessary entries to package.keywords/package.unmask
Here are the files you need to create...
/etc/portage/package.use
Code: Select all
sys-libs/glibc nomalloccheck nptl nptlonly pic userlocales
sys-devel/libperl ithreads
dev-lang/perl ithreads
sys-devel/binutils multislot
sys-devel/gcc multislotCode: Select all
=sys-libs/glibc-2.3.6-r1 -*
=sys-devel/gcc-4.0* -*
=sys-devel/binutils-2.16.9* -*
sys-libs/libstdc++-v3 ~x86
dev-libs/mpfr ~x86
dev-libs/gmp ~x86
sys-libs/timezone-data ~x86Code: Select all
=sys-devel/binutils-2.16.9*
=sys-libs/glibc-2.3.6
=sys-devel/gcc-4.0*
>=dev-libs/lzo-2.0
=media-video/transcode-1.0*You have to set this according to your region/area/language
This is completely optional, it just saves build time
Code: Select all
# nano /etc/locales.buildCode: Select all
# emerge gcc-config mpfr glibc binutils libstdc++-v3 gccCode: Select all
# gcc-config -l
(view options)
1 ) i686-pc-linux-gnu-3.3.5_2005* (should be similar to this...)
2 - 5 ) (other hardned, etc compilers of 3.3.5)
6 ) i686-pc-linux-gnu-4.0.2* (should be similar to this...)
# gcc-config 6
# binutils-config -l
(should be 2 because we are using the unstable binutils snapshot)
# binutils-config 2
# env-update; source /etc/profileCode: Select all
# wget http://snigel.no-ip.com/~nxsty/linux/glibc-overlay.tar.bz2
# mkdir -p /usr/local/portage/sys-libs
# tar jxvf glibc-overlay.tar.bz2 -C /usr/local/portage/sys-libs
# rm glibc-overlay*
# echo =sys-libs/glibc-2.3.9* -* >> /etc/portage/package.keywordsCode: Select all
# emerge glibc binutils libstdc++-v3 gccCode: Select all
# emerge -aP gcc (make sure it wants to prune the old version)
# emerge -aP binutils (make sure it wants to prune the old version)8.8 - Rebuilding the System
Code: Select all
# emerge --emptytree system9.1 - Choosing your kernel
Choose a kernel source based on what your needs/likes are
The DEFAULT Conrad Install uses NITRO-Sources - But there are 4 other trusted kernels.
Code: Select all
[b]/DEFAULT Kernel in Conrad[/b]
2 - Nitro-Sources 2.6.14-r2- Courtesy of Tiger683
Release Announcement: http://forums.gentoo.org/viewtopic-t-401300.html
Ebuild: http://www.stud.uni-karlsruhe.de/~uyavl/public/nitro-sources/2.6.14-nitro2/nitro-sources-2.6.14-r2.ebuild
[b]/Optional Trusted Kernels[/b]
2 - ArchCK-Sources 2.6.14-archck5 - Courtesy of iphitus
Release Announcement: http://forums.gentoo.org/viewtopic-t-400536.html
Ebuild: http://bugs.gentoo.org/attachment.cgi?id=72791
3 - Acid-Sources 2.6.14-r2 - Courtesy of Tiger683
Release Announcement: http://forums.gentoo.org/viewtopic-t-397773.html
Ebuild: http://www.stud.uni-karlsruhe.de/~uyavl/public/acid-sources/2.6.14-acid2/acid-sources-2.6.14-r2.ebuildemerge gentoo-sources
5 - Vanilla-Sources - NO REISER4
emerge vanilla-sources
9.2 - Downloading the NITRO-Sources ebuild
(Nitro is the default kernel now)
Code: Select all
# wget http://www.stud.uni-karlsruhe.de/~uyavl/public/nitro-sources/2.6.14-nitro2/nitro-sources-2.6.14-r2.ebuild
(NOTE: Depending on which kernel you chose, substitute as necessary)
Code: Select all
# mkdir -p /usr/local/portage/sys-kernel/nitro-sources
# mv nitro-sources-* /usr/local/portage/sys-kernel/nitro-sources
# ebuild /usr/local/portage/sys-kernel/nitro-sources/nitro-sources-2.6.14-r2.ebuild digest
# echo sys-kernel/nitro-sources ~x86 >> /etc/portage/package.keywords
# emerge nitro-sources-----
I can only help you out so much, what I can do is tell you how to get started, and what is required...
Code: Select all
# cd /usr/src/linux
# make menuconfig
Code: Select all
Required Options...
Nitro Sources Menu --->
[*] Reiser4 <experimental>
[*] 1 GB Lowmem Support (optional)
(Also check out Nitro's other features in this menu, but reiser4 is required)
Code maturity level options --->
[*] Prompt for development and/or incomplete code/drivers
General setup --->
[*] Support for hot-pluggable devices
Loadable Module Support --->
[*] Module unloading support
Processor type and features --->
[*] Standard x86 support
(Change accordingly)
(Your Processor Family) Processor family
[*] Symmetric multi-processing support
[*] 1 GB Lowmem support (optional)
File systems --->
Pseudo Filesystems --->
[*] /proc file system support
[ ] /dev file system support (OBSOLETE)
[*] Virtual memory file system support (former shm fs)
<*> Ext3 journalling file system support
<*> Second extended fs support
<*> Reiser4 <EXPERIMENTAL)
<*> Reiser4 debug mode
Device Drivers --->
ATA/ATAPI/MFM/RLL support --->
[*] Generic PCI bus-master DMA support
[*] Use PCI DMA by default when available
[*] SCSI Emulation Support
Device Drivers --->
Networking support --->
<*> PPP (point-to-point protocol) support
<*> PPP support for async serial ports
<*> PPP support for sync tty ports
100 MBIT/1000 MBIT --->
(make sure you compile in your proper network driver
Sound --->
[M] Sound card support
Alsa --->
PCI Cards --->
[M] Your Driver, mine is intel8x0, a common one is emu10k1 for soundblaster cards
USB Support --->
<*> USB Human Interface Device (full HID) support
Device Drivers > Graphics support:
[*] Support for frame buffer devices
<*> VESA VGA graphics support
VESA driver type (vesafb-tng) --->
(HRESxVRES@FREQ) VESA default mode # Pick your resolution - eg. 1024x768@80
Device Drivers > Graphics support > Console display driver support:
[*] Video mode selection support
<*> Framebuffer Console support
Device Drivers > Graphics support:
[*] Support for the framebuffer splash
Device Drivers > Block devices:
<*> RAM disk support
(4096) Default RAM disk size (kbytes) (NEW)
[*] Initial RAM disk (initrd) supportCode: Select all
# mount /dev/hda1 /boot
# echo sys-boot/grub ~x86 >> /etc/portage/package.keywords
# emerge grubWindows users, your partition layout could look like this, 1-windows,2-swap,3-root,4-boot
9.6 - Compiling the Kernel
Code: Select all
# make && make modules_install && make install10.1 Emerging necessary programs
Code: Select all
# emerge syslog-ng reiser4progs sysfsutils dhcpcd hotplug coldplug gentoolkit acpid
Code: Select all
# rc-update add syslog-ng default
# rc-update add net.eth0 default
# rc-update add hotplug default
# rc-update add coldplug default
# rc-update add acpid defaultIf you followed the kernel compile options, you should have everything required
11.1 - Emerging splashutils and a few themes
Code: Select all
# emerge splashutils splash-themes-gentoo
# rc-update add splash bootPreview1: http://www.bfgraphics.net/conrad-gentoo ... plash1.png
Preview2: http://www.bfgraphics.net/conrad-gentoo ... plash2.png
These are previews of the new conrad fbsplash theme - it supports 5 resolutions (640x480,800x600,1024x768,1280x1024, and 1600x1200)
It is a lot smoother, I had to take the first screenshot with the digital camera
Code: Select all
# wget bfgraphics.net/conrad-gentoo/lib/conrad-fbsplash.tar.bz2
# tar jxvf conrad-fbsplash.tar.bz2 -C /etc/splashCode: Select all
# cd /etc/splash
# splash_geninitramfs -v -g /boot/fbsplash-conrad -r 1024x768 conrad
# rm -rf /etc/splash/default/*
# ln -s /etc/splash/conrad/* /etc/splash/default/
12.1 - The CONRAD Custom Grub Splash
Brand new Conrad Grub Splash, will be seen on the next conrad livecd (unless it uses isolinux, it's in debate)
This custom splashimage is not totally conrad-based, it still states gentoo linux at the top in big bold letters
Code: Select all
Preview: http://www.bfgraphics.net/conrad/conrad-grub.png
Download:
http://bfgraphics.net/conrad/0.5.0/grub/conrad.xpm.gzCode: Select all
Boot partition...
default 0
timeout 30 # amount of time (seconds) before grub boots the selected option
splashimage (hd0,0)/grub/conrad.xpm.gz
# The CONRAD Splash image is a very nice splash, that can be previewed above
title=Conrad-Gentoo | GCC4
root (hd0,0) # boot partition
kernel /vmlinuz-2.6.14-nitro2 root=/dev/hda3 video=vesafb:1024x768-16@80,mtrr,ywrap splash=silent,fadein,theme:gentoo quiet CONSOLE=/dev/tty1
initrd (hd0,0)/fbsplash-conrad
title=Windoze (if existent)
rootnoverify (hd0,3)
makeactive
chainloader +1
Note: GRUB will only install on reiser4 partitions if you installed it the reiser4 way
Code: Select all
# grub
<grub:> root (hd0,0) # boot partition
# boot partiton
<grub:> setup (hd0)
<grub:> quit
13.1 - Editing configuration files
Code: Select all
# nano /etc/conf.d/hdparm
Add the following
hda_args="-d1 -X69 -c1"
cdrom0_args="-d1"Code: Select all
# nano /etc/conf.d/hostname
(Set your hostname)
HOSTNAME="conrad-gentoo"
# nano /etc/hosts
127.0.0.1 localhost
..change to..
127.0.0.1 conrad-gentoo
# ^ = your hostname
Code: Select all
# nano /etc/conf.d/domainname
# DNSDOMAIN="gentoo.org"
# NISDOMAIN=""
- If you don't know what a nisdomain is, leave it blank(Not necessary for dhcp users as of 2005.1)
Code: Select all
# nano /etc/conf.d/net
For possible lines, visit the Configuring the Network section in the Gentoo Handbook Here
http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?part=1&chap=8#doc_chap2Code: Select all
# nano /etc/fstab
# <fs> <mountpoint> <type> <opts> <dump/pass>
# Reiser4 Users use, noatime and nodiratime - in opts
/dev/hda1 /boot ext2 noauto,notail 1 2
/dev/hda3 / reiser4 notail 0 1
/dev/hda2 none swap sw 0 0
/dev/hdd /mnt/cdrom iso9660 user,noauto,ro,exec 0 0
/dev/fd0 /mnt/floppy auto noauto,users 0 0
# NOTE: The next line is critical for boot!
none /proc proc defaults 0 0
# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
# POSIX shared memory (shm_open, shm_unlink).
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
# use almost no memory if not populated with files)
# Adding the following line to /etc/fstab should take care of this:
none /dev/shm tmpfs nodev,nosuid 0 0 First set the root password
Code: Select all
# passwd
<enter new password>
<confirm new password>
Code: Select all
# useradd -m -G users,wheel conrad
# passwd conrad
<set conrads password14.1 - Rebooting And Unmounting
Code: Select all
# umount /boot
# umount /proc
# exit
# umount /mnt/gentoo
# rebootFind yourself at a grub menu, and boot into your system
If you get a kernel panic then check to make sure you configured everything properly
15 - Other Configuration
15.1 - Looking at the possible use variables
Code: Select all
# nano /usr/portage/profiles/use.descCode: Select all
USE="x86 oss apm arts avi berkdb crypt cups encode foomaticdb gdbm gif gpm gtk gtk2 imlib jpeg kde gnome libg++
libwww mad mikmod motif mpeg ncurses nls oggvorbis opengl pam pdflib png python qt quicktime readline sdl
slang spell ssl svga tcpd truetype X xml2 xmms xv zlib indent"There are tons of use flags to choose from, personally, I like a gnome/gtk/opengl/nvidia system, here is how I will set my use flags
Code: Select all
# nano /etc/make.conf15.3 - Deleting the 'netmount' service if it is unneeded
Most people don't need this, it will fail to start in most cases
Code: Select all
# rc-update del netmount16 - Installing Xorg-X11 6.9RC and a graphical environment
16.1 - Downloading and Extracting the xorg 6.9 ebuild
Code: Select all
# wget http://snigel.no-ip.com/~nxsty/linux/xorg-x11-overlay.tar.bz2# mkdir -p /usr/local/portage/x11-base
# tar jxvf xorg-x11-overlay.tar.bz2 -C /usr/local/portage/x11-base
# nano /etc/portage/package.keywords
<add this line>
=x11-base/xorg-x11-6.9_pre* -*
[/code]
16.2 - Editing xft.pc
THIS IS IMPORTANT! if this hasnt been fixed in your snapshot yet...
Code: Select all
# nano /usr/lib/pkgconfig/xft.pc
(FIND THE DEPENDENCIES)
if 'xproto' is there, delete itCAIRO-1.0* fails to build on ALL newer version of binutils, and if you followed this guide, you are using a newer ver: of binutils
Bug #: http://bugs.gentoo.org/show_bug.cgi?id=113538
Code: Select all
(taken from the LUCKY CONRAD Script...)
# wget http://bugs.gentoo.org/attachment.cgi?id=73553
# mv attachment* cairo-1.0.2-r1.ebuild
# mkdir -p /usr/local/portage/x11-libs/cairo
# mv cairo-1.0.2-r1.ebuild /usr/local/portage/x11-libs/cairo
# mkdir -p /usr/local/portage/x11-libs/cairo/files
# wget http://bugs.gentoo.org/attachment.cgi?id=73554
# mv attachment* cairo-1.0.2-pkg_macro.patch
# mv cairo-1.0.2-pkg* /usr/local/portage/x11-libs/cairo/files
# wget http://bugs.gentoo.org/attachment.cgi?id=73555
# mv attachment* pixman-remap.patch
# mv pixman-re* /usr/local/portage/x11-libs/cairo/files
# ebuild /usr/local/portage/x11-libs/cairo/cairo-1.0.2-r1.ebuild digest
For Gnome...
Code: Select all
# emerge gnome gdm
(light)
# emerge gnome-light gdmCode: Select all
(monolithic)
# emerge kde gdm
(meta)
# emerge kde-meta gdmCode: Select all
# nano /etc/rc.conf
FIND
# DISPLAYMANAGER="xdm"
uncomment it and change it to GDM
# rc-update add xdm default
# xorgconfig
<go through this script>
If you have 3D acceleration on your card, you may want to, and should install the NVidia or ATI Drivers.
Gentoo NVIDIA Guide: http://www.gentoo.org/doc/en/nvidia-guide.xml
Gentoo-Wiki ATI Guide: http://gentoo-wiki.com/HOWTO_ATI_Drivers
16.5 - The CONRAD Wallpaper Archive
Code: Select all
# Wallpaper 1 - MacOSX/Conrad
http://www.bfgraphics.net/conrad/GFX/conrad-wallpapers/1-macosconrad/17 - Configuring ALSA
For more information you may want to visit the Gentoo Linux Alsa Guide...
Gentoo Alsa Guide: http://www.gentoo.org/doc/en/alsa-guide.xml
17.1 - Emerging alsa-utils
Code: Select all
# emerge alsa-utilsSince alsa 0.9 (i believe) there has been an excellent configurator script included for ALSA
Code: Select all
# alsaconfPhaeronix has made an excellent asound.conf file, here is the url to it, copy it and past it in either ~/user/.asoundrc, or /etc/asound.conf
Code: Select all
www.phaeronix.net
----
Go to the "Alsa Config" SectionCode: Select all
# nano /etc/modules.d/alsa
<Find near the botton snd-***, and sound-***>
change *** to your sound card name, for example...
snd-intel8x0 sound-intel8x0
snd-emu10k1 sound-emu10k1Code: Select all
# rc-update add alsasound defaultNow alsa should be successfully configured, and configured right - Additional tools you may use could be, alsamixer, amixer, etc
18 - Keeping your system up-to-date
18.1 - Keeping the kernel sources up-to-date
If you get to a point in which you want to upgrade the kernel - it can be maybe different when using a custom patchset
First and foremost you want to check back at the Gentoo Forums "Unsupported Software" section, and look for any new Nitro-Sources threads.
Code: Select all
# cp nitro-sources-2.6.xx-*.ebuild /usr/local/portage/sys-kernel/nitro-sources
# ebuild /usr/local/portage/sys-kernel/nitro-sources/nitro-sources-2.6.xx-*.ebuild digest
# cp /usr/src/linux/.config /usr/src/config
# rm /usr/src/linux
# emerge nitro-sources
# cd /usr/src/linux
# make menuconfig
Load an alternate Configuration file --->
"../config"First of all always keep the sync up-to-date, a emerge sync once a day atleast is reccomended
Code: Select all
# emerge syncCode: Select all
# emerge -uD world
# emerge -u world//End Conrad Guide
-----
Well this brings us to our end, I hope you the best of luck.
Now your system should be on the edge in speed and it should be the most up-to-date system once installed.
Your system (hopefully) Now includes...
* Reiser4 Filesystem (possibly)
* GCC 4.0.2 based system
* The LATEST Packages portage has to offer
* The speed of a military jet x 3
* Possibly the latest GNOME, KDE, and xorg 6.9RC/CVS
* Nitro-Sources-<latest> (possible)
* A very nice boot-up splash with a progress bar
-----
Please leave your feedback, suggestions,support issues or other related things to conrad in this forum.
Do not post gentoo issues in this forum, only related issues with following this guide.
//End Conrad Installation Guide 0.7.0
For Support
For support issues, post in this forum.
If you need other assistance, have suggestions, or need to contact me personally, do so at.
Email: conrad-gentoo@bfgraphics.net
AIM: cheater1034
IRC: #conrad
------
Be sure to check out the Conrad Gentoo Projects Home Page
------
If you are interested in developing/help develop something for Conrad Gentoo Projects, email me at, conrad-gentoo@bfgraphics.net
If you used this to install gentoo - Thankyou, I hope your install went well.
We ask all who try this to take a few moments of their time to type what they thought of the install, how easy it was, and how it works.
Thankyou
- Cheater1034
Like it?
If you tried this, and liked it - Why not tell a friend or two? Maybe even add it to your signature
Donate (Hardware or through PayPal
I wont beg anyone for donations - anywhere from $1-$1000 is accepted and appreciated (well maybe $1000 a little bit more
If you have some extra money or obsolete computer parts - I would love any of it
Currently, Conrad is all built on, 1 Machine : AMD Athlon 64 2800+ (O/C'd 200 mhz to 3000+ speed), 768 MB Ram, 120 GB ATA133 HDD
I have a second built machine, a Duron 1.2 GHZ - with everything needed to run, except no hard drive
If you are interested in helping Conrad get better hosting ($20/mo for 400 GB Bandwidth and 10 GB space) or helping us get new build machines to setup and built constantly new concepts for conrad, it is a big help to donate.
PayPal - 1
If you are interested in helping Conrad Gentoo Projects through a small cash donation (PayPal) Please do the following:
1. Go to http://conrad-gentoo.bfgraphics.net/
2. Go to the support page (link at top of page)
3. Click the "Make a Donation" button at the bottom of the support page
Hardware - 2
Any hardware donation is accepted (except ISA Cards and P2 or lower class CPUs)
If you have any of the following items - (CPUs, Hard Drives, Memory Sticks, Motherboards, Vid Cards, or already Built systems, etc) - That aren't in use, why not Donate them to Conrad? I will pay for shipping on any item you donate
HOWTO:
1. Email conrad-gentoo@bfgraphics.net with the item you are willing to donate, a picture (for proof), and your PayPal account information - and a shipping quote from UPS, USPS, DHL, Fed-Ex, etc. I will send you the electronic funds through paypal.
All donors will be recognized in red bold letters in this guide, the pages of all the other Conrad releases, and the official conrad website
-----
Future Conrad Projects
* Conrad Stage3 Install Tarballs - (GCC 4.0 Enabled - Athlon-XP, i686, i586, Pentium3 <maybe>, pentium4 <maybe>, prescott <maybe>) - They can be used in this install to save a bundle of time.
-----
Again, if you are interested in joining Conrad Development, email me at, conrad-gentoo@bfgraphics.net - If you have any suggestions, also reach me there
LUCKY - 1.0.1 'Piñata' Released
RELEASED - http://forums.gentoo.org/viewtopic-t-411116.html
CONRAD Install LiveCD 0.2.5 "ambition" Release Date
Date: NOT SET - In Development!





