http://forums.gentoo.org/viewtopic-t-848187.html
Above is the link to the post I mentioned.
Any help would be apreciated.





since you're building a desktop system, you would probably be better off starting by just simply selecting the correct profile (eselect profile list, then eselect profile set <somenumber> where <somenumber> is the 'desktop' profile)CorruptPanda wrote:Hmm..I'm now configuring the use flags. What would be a good example of use flags for a desktop environment? (I plan on using Fluxbox)
Code: Select all
USE="-hal dbus -ldap mmx sse sse2 opengl injection policykit wicd"

it sounds like you may have been very close (perhaps even just a single edit to grub.conf) to being up and running! then again, if you built your own kernel (and it was your first attempt at doing so) then you may have built it without support for your disks or the filesystems on them or something else critical, in which case perhaps there was still a bit of work to do.CorruptPanda wrote:Thanks for the suggestions guys. I spent something like 5-7 hours trying to install, when I rebooted, I got a kernel panic about boot= being in the wrong place or something. However, the install process alone taught me quite a bit. I especially liked using fdisk ^^ I've went back to Debian for the time being, but I still have my gentoo disc and will eventually have another go at it.Thanks again.

use one of Pappy's kernel seeds, and his guide, and go through the manual kernel configuration process.CorruptPanda wrote:Thanks for the suggestions guys. I spent something like 5-7 hours trying to install, when I rebooted, I got a kernel panic about boot= being in the wrong place or something. However, the install process alone taught me quite a bit. I especially liked using fdisk ^^ I've went back to Debian for the time being, but I still have my gentoo disc and will eventually have another go at it.Thanks again.




Code: Select all
corrupt@localhost:~$ lsmod
Module Size Used by
savage 23394 2
drm 112088 3 savage
fuse 43762 1
loop 9765 0
snd_via82xx 15256 1
gameport 6061 1 snd_via82xx
snd_ac97_codec 79148 1 snd_via82xx
ac97_bus 710 1 snd_ac97_codec
snd_mpu401_uart 4067 1 snd_via82xx
via_ircc 13311 0
irda 75920 1 via_ircc
crc_ccitt 1039 1 irda
snd_pcm 47226 3 snd_via82xx,snd_ac97_codec
snd_rawmidi 12513 1 snd_mpu401_uart
i2c_viapro 4419 0
snd_seq_device 3673 1 snd_rawmidi
snd_timer 12258 1 snd_pcm
parport_pc 15799 0
shpchp 21220 0
evdev 5609 7
i2c_core 12696 2 drm,i2c_viapro
parport 22554 1 parport_pc
button 3598 0
processor 26671 1
snd 34363 8 snd_via82xx,snd_ac97_codec,snd_mpu401_uart,snd_pcm,snd_rawmidi,snd_seq_device,snd_timer
snd_page_alloc 5045 2 snd_via82xx,snd_pcm
pci_hotplug 18065 1 shpchp
soundcore 3450 1 snd
pcspkr 1207 0
ext3 94204 2
jbd 32177 1 ext3
mbcache 3762 1 ext3
sg 15968 0
sr_mod 10770 0
cdrom 26487 1 sr_mod
sd_mod 25869 4
crc_t10dif 1012 1 sd_mod
usbhid 27984 0
ata_generic 2019 0
hid 50653 1 usbhid
fan 2586 0
pata_via 5701 3
8139cp 13421 0
uhci_hcd 16057 0
thermal 9206 0
libata 115721 2 ata_generic,pata_via
8139too 14949 0
floppy 40923 0
thermal_sys 9378 3 processor,fan,thermal
ehci_hcd 27851 0
scsi_mod 101401 4 sg,sr_mod,sd_mod,libata
mii 2714 2 8139cp,8139too
usbcore 98397 4 usbhid,uhci_hcd,ehci_hcd
nls_base 4541 1 usbcore

when you run 'make' in your kernel sources directory, it uses the '.config' file to determine what all to buildCorruptPanda wrote:Out of curiosity, what are the differences between Pappy's different kernel sources? (Vanilla, Hardened, tuxonix, Gentoo, etc)

boot DVD or CDcwr wrote:A lot of people seem to have this kernel configuration; would it be possible to
have the Gentoo DVD kernel configuration posted somewhere (accessible via
emerge?) to give a reliable starting point for configuration? That config
file, and genkernel, should make building a first kernel pretty bomb-proof.
Then comes the optimisation ...
Will

Genkernel does that for you. Perhaps just documenting this approach in the manual would help.cach0rr0 wrote:boot DVD or CDcwr wrote:A lot of people seem to have this kernel configuration _problem_ [edit]; would it be possible to
have the Gentoo DVD kernel configuration posted somewhere (accessible via
emerge?) to give a reliable starting point for configuration? That config
file, and genkernel, should make building a first kernel pretty bomb-proof.
Then comes the optimisation ...
Will
zcat /proc/config.gz > /wherever/you/want/to/save
there's also the matter of the initramfs if one is used, as that needs to be copied over as well. that's a less straightforward thing to pilfer.
amen! first priority is to get *something* in your grub menu that will always boot you into a working Gentoo; once that's sorted, then you're in a much more comfortable position to start testing custom kernel configurations.gentooP4 wrote:It might be a plan to install with the genkernel and then once you are up and running start building a custom kernel. This way if both kerenels are in grub you can at least boot to a working gentoo system if you get a kernel panic