Cerf
07-06-2004, 04:23 PM
Yo yo yo
I finally made my own kernel (whoot, I feel special) and It booted fine but under this new kernel my x server isnt running. The error I am getting is
X10: fatal IO error 104 (Connection reset by peer) on X server ":0.0" after 0 requests (0 Known processed) with 0 events remaining
And it goes on saying that the error log is in /var/log/XFree86.0.log, it should be attached
What I think is important is (near the bottom of the log):
Fatal server error:
no screens found
so this is what I did to make my kernel
#cd /usr/src
#cp -r linux-2.4.18-14 linux-2.4.18-14custom
#make mrproper
#make oldconfig
#make menuconfig
And then from there I went into Parallel port support -> use FIFO/DMA if avaiable (Experimental) because thats the only aditional thing that I need for my programming
#make dep
#make bzImage
#make modules
#cp /usr/src/linux-2.4.18-14custom/arch/i386/boot/bzImage /boot/vmlinuz-2.4.18-14custom
#make modules_install
#cp /usr/src/linux-2.4.18-14custom/System.map /boot/System.map-2.4.18-14custom
#/sbin/mkinitrd /boot/initrd-2.4.18-14custom.img 2.4.18-14custom
#vi /etc/grub.conf
and my /etc/grub.conf became
default=0
timeout=10
splashimage=(hd0,2)/grub/splash.xpm.gz
title Red Hat Linux (2.4.18-14)
root (hd0,2)
kernel /vmlinuz-2.4.18-14 ro root=LABEL=/ hdc=ide-scsi
initrd /initrd-2.4.18-14.img
title Red Hat Linux (parallel port ECP) (2.4.18-14a)
root (hd0,2)
kernel /vmlinuz-2.4.18-14custom ro root=LABEL=/ hdc=ide-scsi
initrd /initrd-2.4.18-14custom.img
title Windows
rootnoverify (hd0,1)
chainloader +1
Is there anyconfigureation that I missed with my kernel or is it an xserver configeration problem?
I'm sorry if this is in the wrong thread, I think that this is the best place for it.
Thanks
I finally made my own kernel (whoot, I feel special) and It booted fine but under this new kernel my x server isnt running. The error I am getting is
X10: fatal IO error 104 (Connection reset by peer) on X server ":0.0" after 0 requests (0 Known processed) with 0 events remaining
And it goes on saying that the error log is in /var/log/XFree86.0.log, it should be attached
What I think is important is (near the bottom of the log):
Fatal server error:
no screens found
so this is what I did to make my kernel
#cd /usr/src
#cp -r linux-2.4.18-14 linux-2.4.18-14custom
#make mrproper
#make oldconfig
#make menuconfig
And then from there I went into Parallel port support -> use FIFO/DMA if avaiable (Experimental) because thats the only aditional thing that I need for my programming
#make dep
#make bzImage
#make modules
#cp /usr/src/linux-2.4.18-14custom/arch/i386/boot/bzImage /boot/vmlinuz-2.4.18-14custom
#make modules_install
#cp /usr/src/linux-2.4.18-14custom/System.map /boot/System.map-2.4.18-14custom
#/sbin/mkinitrd /boot/initrd-2.4.18-14custom.img 2.4.18-14custom
#vi /etc/grub.conf
and my /etc/grub.conf became
default=0
timeout=10
splashimage=(hd0,2)/grub/splash.xpm.gz
title Red Hat Linux (2.4.18-14)
root (hd0,2)
kernel /vmlinuz-2.4.18-14 ro root=LABEL=/ hdc=ide-scsi
initrd /initrd-2.4.18-14.img
title Red Hat Linux (parallel port ECP) (2.4.18-14a)
root (hd0,2)
kernel /vmlinuz-2.4.18-14custom ro root=LABEL=/ hdc=ide-scsi
initrd /initrd-2.4.18-14custom.img
title Windows
rootnoverify (hd0,1)
chainloader +1
Is there anyconfigureation that I missed with my kernel or is it an xserver configeration problem?
I'm sorry if this is in the wrong thread, I think that this is the best place for it.
Thanks