Hi,
I've just finished installing Slackware 10.2, and the installation went brilliantly. But, I've got a problem.
Once I've logged in (as a normal user, using the standard CLI login), I type 'startx'. The first couple of lines notifying me that XFree86's conf files are being loaded appear, but then I am led to a black screen with the following white text (I have left out the first line, but it basically says that the monitor settings are incorrect):
I thought these values looked a bit odd, so I rebooted the computer and put in my Kubuntu Live CD. Once it was up, I ran 'xvidtune' to check out some stats. Here's what it returned:
Quote:
ubuntu@ubuntu:~$ xvidtune
Vendor: , Model:
Num hsync: 1, Num vsync: 1
hsync range 0: 22.00 - 62.00
vsync range 0: 50.00 - 75.00
|
Having got these values (and become even more confused in the process), I set off to edit my xorg.conf. I mounted my filesystem, and here's the original monitor section of /etc/X11/xorg.conf:
Quote:
Section "Monitor"
Identifier "My Monitor"
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
HorizSync 31.5 - 50.0
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
VertRefresh 40-90
EndSection
|
And this is what I altered it to (excluded comments for brevity):
Quote:
Section "Monitor"
Identifier "My Monitor"
#
HorizSync 11.00 - 50.00
#
VertRefresh 15 - 90
EndSection
|
I then saved the file and rebooted. Fingers crossed, I typed 'startx' again, and I got the same centered white text again. What should I do to fix this?
As I couldn't start my X server, I decided to give my network card a shot. I ran 'netconfig' and entered all the values requested (although I don't understand the purpose of the 'domain name' question), including a static IP on my network, the gateway, and one of the two DNS addresses (I manually added to second one later to /etc/resolv.conf, and removed the 'search domain.com' line). I thought I'd finished configuring it, but I then ran 'ifconfig' and the only device there was lo. My NIC's module probably wasn't loaded, so I ran 'dmesg | grep net' to find out a bit more. Here's what I got:
Quote:
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.30.
|
So, at least I've made a bit of progress - the NIC is part of my nForce motherboard. So, I located forcedeth.c (/usr/src/linux-2.4.31/drivers/net/forcedeth.c). Then, I got stuck, so I decided to click on the "
tips thread" link in one of the Slack stickies. Now, I'm not sure whether I should try running the following, so I wanted your advice:
Code:
echo "/usr/src/linux-2.4.31/drivers/net/forcedeth.c" > /etc/rc.d/rc.netdevice
Thanks in advance!
-jk