Maybe this belongs in the hardware forum, but here goes...
I'm running Debian (Etch/stable) on a pretty old system (Asus P2B mobo, originally ran Win'98)
My old video-card was dying on me (bad fan), so I picked up a cheap card at a swap-meet.
The old video-card was an ATI Radeon 7200 (32MB)(r100 chipset).
The "new" card is an old ATI Rage 128 (also 32 MB).
I swapped the cards, rebooted, and was completely
stonkered to see my system boot straight into Gnome
with no apparent problems. .
A quick look at '/etc/X11/xorg.conf' shows what appears to be the old xorg.conf file:
(trimmed a little)
Code:
...
Section "Device"
Identifier "ATI Technologies Inc Radeon R100 QD [Radeon 7200]"
Driver "ati"
BusID "PCI:1:0:0"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies Inc Radeon R100 QD [Radeon 7200]"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
...
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"r128
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "DRI"
Mode 0666
EndSectionSection "DRI"
BUT the 'lsmod' listing includes:
Code:
r128 34816 2
drm 61332 3 r128
agpgart 29896 2 drm,intel_agp
Which as far as I can tell means that the Rage 128 driver is the one being loaded... (if any other modules are relavent I didn't recognise them.)
This is the entire lspci listing:
Code:
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 04)
00:04.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
00:04.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:04.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
00:04.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 02)
00:09.0 Ethernet controller: D-Link System Inc RTL8139 Ethernet (rev 10)
01:00.0 VGA compatible controller: ATI Technologies Inc Rage 128 RL/VR AGP
I'm guessing that these are the relevent lines from 'dmesg'
Code:
Boot video device is 0000:01:00.0
Linux agpgart interface v0.101 (c) Dave Jones
agpgart: Detected an Intel 440BX Chipset.
agpgart: AGP aperture is 64M @ 0xe4000000
[drm] Initialized drm 1.0.1 20051102
ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
[drm] Initialized r128 2.5.0 20030725 on minor 0
agpgart: Found an AGP 1.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V2 device at 0000:00:00.0 into 1x mode
agpgart: Putting AGP V2 device at 0000:01:00.0 into 1x mode
I'm now officially confused! What's going on here? Why haven't I had to run
' dpkg-reconfigure xserver-xorg ' , or
' xorg -configure '
in order to have a usable desktop (and do I need to run them anyways?) Is all that stuff I read up on about configuring X (XFree86 and Xorg) obsolete? And what are the consequences if I leave it this way?