Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Problem with nvidia-drivers
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Sat Oct 14, 2006 6:17 pm    Post subject: Problem with nvidia-drivers Reply with quote

Hi,
I'm new to this forum and i don't even know if this is the right category for this post, but i'm quite desperate :( .
I have a Toshiba Satellite 2450-401 with Intel ICH4 chipset and Nvidia Geforce Go 420 32mb graphics card. I emerged nvidia-drivers and configured as suggested by http://www.gentoo.org/doc/en/nvidia-guide.xml. If i try to startx i get a black screen and the computer freezes completely, the only thing i can do is manually switching off. Everything works smoothly with nv driver, but i need 3D Accelerations for my LAN-parties :P .

Thanks in advance for any help.
Back to top
View user's profile Send private message
tomi.e
n00b
n00b


Joined: 24 Aug 2006
Posts: 68
Location: Slovenia

PostPosted: Sat Oct 14, 2006 7:13 pm    Post subject: Reply with quote

Can you post your /etc/X/xorg.conf, dmesg and /var/log/Xorg.0.log.old
_________________
silence kills the revolution
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Sat Oct 14, 2006 7:19 pm    Post subject: Reply with quote

/etc/X11/xorg.conf

Code:
# File generated by xorgconfig.

#
# Copyright 2004 The X.Org Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# Except as contained in this notice, the name of The X.Org Foundation shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from
# The X.Org Foundation.
#

# **********************************************************************
# Refer to the xorg.conf(5x) man page for details about the format of
# this file.
# **********************************************************************

# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"     # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the font modules
#    Load        "type1"
#    Load        "speedo"
    Load        "freetype"
#    Load        "xtt"

# This loads the GLX module
    Load       "glx"
# This loads the DRI module
#    Load       "dri"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

#    RgbPath   "/usr/share/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
#
#

    FontPath   "/usr/share/fonts/misc/"
#    FontPath   "/usr/share/fonts/TTF/"
#    FontPath   "/usr/share/fonts/OTF"
    FontPath   "/usr/share/fonts/Type1/"
#    FontPath   "/usr/share/fonts/CID/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/local/"
#    FontPath   "/usr/lib/X11/fonts/misc/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/Speedo/"
#    FontPath   "/usr/lib/X11/fonts/Type1/"
#    FontPath   "/usr/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/lib/X11/fonts/freefont/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/100dpi/"

# The module search path.  The default path is shown here.

#    ModulePath "/usr/lib/modules"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

# Uncomment this to cause a core dump at the spot where a signal is
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#    Option "NoTrapSignals"

# Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
# (where n is 1 through 12).  This allows clients to receive these key
# events.

#    Option "DontVTSwitch"

# Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
# This allows clients to receive this key event.

#    Option "DontZap"

# Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
# sequences.  This allows clients to receive these key events.

#    Option "Dont Zoom"

# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.

#    Option "DisableVidModeExtension"

# Uncomment this to enable the use of a non-local xvidtune client.

#    Option "AllowNonLocalXvidtune"

# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.

#    Option "DisableModInDev"

# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).

#    Option "AllowNonLocalModInDev"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier   "Keyboard1"
    Driver   "kbd"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

    Option "AutoRepeat" "500 30"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#    Option   "Xleds"      "1 2 3"

#    Option "LeftAlt"     "Meta"
#    Option "RightAlt"    "ModeShift"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#    Option "XkbModel"    "pc105"
# If you have a US Microsoft Natural keyboard, you can use:
#    Option "XkbModel"    "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#    Option "XkbLayout"   "de"
# or:
#    Option "XkbLayout"   "de"
#    Option "XkbVariant"  "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#    Option "XkbOptions"  "ctrl:swapcaps"

# These are the default XKB settings for Xorg
#    Option "XkbRules"    "xorg"
#    Option "XkbModel"    "pc105"
#    Option "XkbLayout"   "us"
#    Option "XkbVariant"  ""
#    Option "XkbOptions"  ""

#    Option "XkbDisable"

    Option "XkbRules"   "xorg"
    Option "XkbModel"   "pc104"
    Option "XkbLayout"   "it"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier   "Mouse1"
    Driver   "mouse"
    Option "Protocol"    "Auto"   # Auto detect
    Option "Device"      "/dev/input/mice"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"   "Xqueue"

# Mouse-speed setting for PS/2 mouse.

#    Option "Resolution"   "256"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"   "9600"
#    Option "SampleRate"   "150"

# Mouse wheel mapping.  Default is to map vertical wheel to buttons 4 & 5,
# horizontal wheel to buttons 6 & 7.   Change if your mouse has more than
# 3 buttons and you need to map the wheel to different button ids to avoid
# conflicts.

    Option "ZAxisMapping"   "4 5 6 7"

# Emulate3Buttons is an option for 2-button mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection


# **********************************************************************
# Other input device sections
# this is optional and is required only if you
# are using extended input devices.  This is for example only.  Refer
# to the xorg.conf man page for a description of the options.
# **********************************************************************
#
# Section "InputDevice"
#    Identifier  "Mouse2"
#    Driver      "mouse"
#    Option      "Protocol"      "MouseMan"
#    Option      "Device"        "/dev/mouse2"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball"
#    Driver     "magellan"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "spaceball2"
#    Driver     "spaceorb"
#    Option     "Device"        "/dev/cua0"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen0"
#    Driver     "microtouch"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "1412"
#    Option     "MaxX"          "15184"
#    Option     "MinY"          "15372"
#    Option     "MaxY"          "1230"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection
#
# Section "InputDevice"
#    Identifier "touchscreen1"
#    Driver     "elo2300"
#    Option     "Device"        "/dev/ttyS0"
#    Option     "MinX"          "231"
#    Option     "MaxX"          "3868"
#    Option     "MinY"          "3858"
#    Option     "MaxY"          "272"
#    Option     "ScreenNumber"  "0"
#    Option     "ReportingMode" "Scaled"
#    Option     "ButtonThreshold"       "17"
#    Option     "ButtonNumber"  "1"
#    Option     "SendCoreEvents"
# EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

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 - 48.5

#    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 50-70

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
    Identifier   "Standard VGA"
    VendorName   "Unknown"
    BoardName   "Unknown"

# The chipset line is optional in most cases.  It can be used to override
# the driver's chipset detection, and should not normally be specified.

#    Chipset   "generic"

# The Driver line must be present.  When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module.  Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.

    Driver     "vga"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for.  When this line isn't present, a device
# section can only match up with the primary video device.  For PCI
# devices a line like the following could be used.  This line should not
# normally be included unless there is more than one video device
# intalled.

#    BusID      "PCI:0:10:0"

#    VideoRam   256

#    Clocks   25.2 28.3

EndSection

# Device configured by xorgconfig:

Section "Device"
    Identifier  "** NVIDIA (generic)                   [nv]"
    Driver      "nvidia"
    #VideoRam    32768
    # Insert Clocks lines here if appropriate
EndSection


# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen 1"
    Device      "** NVIDIA (generic)                   [nv]"
    Monitor     "My Monitor"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1024x768"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1024x768"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1024x768"
        ViewPort    0 0
    EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present.  Each describes
# the way multiple screens are organised.  A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option.  In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

Section "ServerLayout"

# The Identifier line must be present
    Identifier  "Simple Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens.  The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen.  In this example, screen 2 is located to the
# right of screen 1.

    Screen "Screen 1"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used.  Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

# Section "DRI"
#    Mode 0666
# EndSection


dmesg

Code:
Linux version 2.6.18-gentoo (root@satellite) (gcc version 4.1.1 (Gentoo 4.1.1)) #2 PREEMPT Sat Oct 14 18:49:03 CEST 2006
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e0000 - 00000000000eee00 (reserved)
 BIOS-e820: 00000000000eee00 - 00000000000ef000 (ACPI NVS)
 BIOS-e820: 00000000000ef000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000001ffd0000 (usable)
 BIOS-e820: 000000001ffd0000 - 000000001ffe0000 (ACPI data)
 BIOS-e820: 000000001ffe0000 - 0000000020000000 (reserved)
 BIOS-e820: 00000000feda0000 - 00000000fedc0000 (reserved)
 BIOS-e820: 00000000ffb80000 - 00000000ffc00000 (reserved)
 BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
511MB LOWMEM available.
On node 0 totalpages: 131024
  DMA zone: 4096 pages, LIFO batch:0
  Normal zone: 126928 pages, LIFO batch:31
DMI 2.3 present.
ACPI: RSDP (v000 TOSHIB                                ) @ 0x000f0180
ACPI: RSDT (v001 TOSHIB 750      0x00970814 TASM 0x04010000) @ 0x1ffd0000
ACPI: FADT (v002 TOSHIB 750      0x00970814 TASM 0x04010000) @ 0x1ffd0058
ACPI: DBGP (v001 TOSHIB 750      0x00970814 TASM 0x04010000) @ 0x1ffd00dc
ACPI: BOOT (v001 TOSHIB 750      0x00970814 TASM 0x04010000) @ 0x1ffd0030
ACPI: DSDT (v001 TOSHIB 2450     0x20021212 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0xd808
Allocating PCI resources starting at 30000000 (gap: 20000000:deda0000)
Detected 2793.082 MHz processor.
Built 1 zonelists.  Total pages: 131024
Kernel command line: root=/dev/hda5 vga=792 splash=silent,fadein,theme:gentoo-blue quiet CONSOLE=/dev/tty1
Local APIC disabled by BIOS -- you can enable it with "lapic"
mapped APIC to ffffd000 (01402000)
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
PID hash table entries: 2048 (order: 11, 8192 bytes)
Console: colour dummy device 80x25
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 515044k/524096k available (1969k kernel code, 8500k reserved, 775k data, 244k init, 0k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay using timer specific routine.. 5587.97 BogoMIPS (lpj=2793987)
Mount-cache hash table entries: 512
CPU: After generic identify, caps: bfebf9ff 00000000 00000000 00000000 00004400 00000000 00000000
CPU: After vendor identify, caps: bfebf9ff 00000000 00000000 00000000 00004400 00000000 00000000
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: After all inits, caps: bfebf9ff 00000000 00000000 00000080 00004400 00000000 00000000
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU0: Intel P4/Xeon Extended MCE MSRs (12) available
CPU0: Thermal monitoring enabled
Compat vDSO mapped to ffffe000.
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz stepping 07
Checking 'hlt' instruction... OK.
ACPI: Core revision 20060707
ACPI: setting ELCR to 0200 (from 0e00)
checking if image is initramfs... it is
Freeing initrd memory: 761k freed
NET: Registered protocol family 16
EISA bus registered
ACPI: bus type pci registered
PCI: PCI BIOS revision 2.10 entry at 0xfd49f, last bus=5
PCI: Using configuration type 1
Setting up standard PCI resources
ACPI: Interpreter enabled
ACPI: Using PIC for interrupt routing
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Interrupt Link [LNKG] (IRQs *10)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11)
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
ACPI: Assume root bridge [\_SB_.PCI0] bus is 0
* The chipset may have PM-Timer Bug. Due to workarounds for a bug,
* this clock source is slow. If you are sure your timer does not have
* this bug, please use "acpi_pm_good" to disable the workaround
PCI quirk: region d800-d87f claimed by ICH4 ACPI/GPIO/TCO
PCI quirk: region eec0-eeff claimed by ICH4 GPIO
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1
Boot video device is 0000:01:00.0
PCI: Transparent bridge - 0000:00:1e.0
PCI: Bus #05 (-#08) is hidden behind transparent bridge #02 (-#05) (try 'pci=assign-busses')
Please report the result to linux-kernel to fix this permanently
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIB._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
ACPI: Power Resource [PFAN] (off)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
pnp: PnP ACPI: found 11 devices
PnPBIOS: Disabled by ACPI PNP
SCSI subsystem initialized
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
PCI: Bridge: 0000:00:01.0
  IO window: disabled.
  MEM window: fd000000-fdffffff
  PREFETCH window: dbf00000-dfffffff
PCI: Bus 3, cardbus bridge: 0000:02:0b.0
  IO window: 0000c000-0000c0ff
  IO window: 0000c400-0000c4ff
  PREFETCH window: 30000000-31ffffff
  MEM window: 36000000-37ffffff
PCI: Bus 5, cardbus bridge: 0000:02:0b.1
  IO window: 0000c800-0000c8ff
  IO window: 0000cc00-0000ccff
  PREFETCH window: 32000000-33ffffff
  MEM window: 38000000-39ffffff
PCI: Bridge: 0000:00:1e.0
  IO window: c000-cfff
  MEM window: fce00000-fcefffff
  PREFETCH window: 30000000-33ffffff
PCI: Setting latency timer of device 0000:00:1e.0 to 64
PCI: Enabling device 0000:02:0b.0 (0000 -> 0003)
ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:02:0b.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
PCI: Enabling device 0000:02:0b.1 (0000 -> 0003)
ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
ACPI: PCI Interrupt 0000:02:0b.1[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
NET: Registered protocol family 2
IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
TCP established hash table entries: 16384 (order: 4, 65536 bytes)
TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
TCP: Hash tables configured (established 16384 bind 8192)
TCP reno registered
Simple Boot Flag at 0x7c set to 0x1
Machine check exception polling timer started.
io scheduler noop registered
io scheduler deadline registered (default)
lp: driver loaded but no devices found
vesafb: framebuffer at 0xdc000000, mapped to 0xe0880000, using 6144k, total 32768k
vesafb: mode is 1024x768x32, linelength=4096, pages=8
vesafb: protected mode interface info at c000:f4d0
vesafb: pmi: set display start = c00cf515, set palette = c00cf59a
vesafb: pmi: ports = b4c3 b503 ba03 c003 c103 c403 c503 c603 c703 c803 c903 cc03 ce03 cf03 d003 d103 d203 d303 d403 d503 da03 ff03
vesafb: scrolling: redraw
vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Console: switching to colour frame buffer device 128x48
fbsplash: console 0 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 0
fb0: VESA VGA frame buffer device
ACPI: AC Adapter [ADP1] (on-line)
ACPI: Battery Slot [BAT1] (battery present)
ACPI: Power Button (FF) [PWRF]
ACPI: Power Button (CM) [PWRB]
ACPI: Lid Switch [LID]
ACPI: Transitioning device [FAN] to D3
ACPI: Transitioning device [FAN] to D3
ACPI: Fan [FAN] (off)
ACPI: CPU0 (power states: C1[C1] C2[C2])
ACPI: Thermal Zone [THRM] (61 C)
toshiba_acpi: Toshiba Laptop ACPI Extras version 0.18
toshiba_acpi:     HCI method: \_SB_.VALD.GHCI
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
PCI: Enabling device 0000:00:1f.6 (0000 -> 0001)
ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:1f.6[B] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
pnp: Device 00:0a activated.
parport: PnPBIOS parport detected.
pnp: Device 00:0a disabled.
PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
mice: PS/2 mouse device common for all mice
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
loop: loaded (max 8 devices)
8139too Fast Ethernet driver 0.9.27
ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11
ACPI: PCI Interrupt 0000:02:09.0[A] -> Link [LNKE] -> GSI 11 (level, low) -> IRQ 11
eth0: RealTek RTL8139 at 0xce00, 00:08:0d:3f:bc:19, IRQ 11
eth0:  Identified 8139 chip type 'RTL-8100B/8139D'
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ICH4: IDE controller at PCI slot 0000:00:1f.1
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:1f.1[A] -> Link [LNKC] -> GSI 11 (level, low) -> IRQ 11
ICH4: chipset revision 2
ICH4: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0xbfa0-0xbfa7, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0xbfa8-0xbfaf, BIOS settings: hdc:DMA, hdd:pio
Probing IDE interface ide0...
input: AT Translated Set 2 keyboard as /class/input/input0
Synaptics Touchpad, model: 1, fw: 5.9, id: 0xf6eb1, caps: 0x804713/0x0
input: SynPS/2 Synaptics TouchPad as /class/input/input1
hda: HITACHI_DK23EA-40, ATA DISK drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Probing IDE interface ide1...
hdc: UJDA740 DVD/CDRW, ATAPI CD/DVD-ROM drive
ide1 at 0x170-0x177,0x376 on irq 15
hda: max request size: 128KiB
hda: 78140160 sectors (40007 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100)
hda: cache flushes supported
 hda: hda1 hda2 < hda5 hda6 >
hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache, UDMA(33)
Uniform CD-ROM driver Revision: 3.20
PCI: Enabling device 0000:00:1d.7 (0000 -> 0002)
ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
ACPI: PCI Interrupt 0000:00:1d.7[D] -> Link [LNKH] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci_hcd 0000:00:1d.7: EHCI Host Controller
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:1d.7: debug port 1
PCI: cache line size of 128 is not supported by device 0000:00:1d.7
ehci_hcd 0000:00:1d.7: irq 11, io mem 0x34000000
ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
USB Universal Host Controller Interface driver v3.0
ACPI: PCI Interrupt 0000:00:1d.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: UHCI Host Controller
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
uhci_hcd 0000:00:1d.0: irq 11, io base 0x0000efe0
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI Interrupt 0000:00:1d.1[B] -> Link [LNKD] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: UHCI Host Controller
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
uhci_hcd 0000:00:1d.1: irq 11, io base 0x0000ef80
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
PCI: Enabling device 0000:00:1d.2 (0000 -> 0001)
ACPI: PCI Interrupt 0000:00:1d.2[C] -> Link [LNKC] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: UHCI Host Controller
usb 2-1: new low speed USB device using uhci_hcd and address 2
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
uhci_hcd 0000:00:1d.2: irq 11, io base 0x000018c0
usb 2-1: configuration #1 chosen from 1 choice
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
Initializing USB Mass Storage driver...
usbcore: registered new driver usb-storage
USB Mass Storage support registered.
input: Logitech Optical USB Mouse as /class/input/input2
input: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:1d.0-1
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.6:USB HID core driver
i2c /dev entries driver
EISA: Probing bus 0 at eisa.0
Advanced Linux Sound Architecture Driver Version 1.0.12rc1 (Thu Jun 22 13:55:50 2006 UTC).
PCI: Enabling device 0000:00:1f.5 (0000 -> 0003)
ACPI: PCI Interrupt 0000:00:1f.5[B] -> Link [LNKB] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:1f.5 to 64
intel8x0_measure_ac97_clock: measured 50992 usecs
intel8x0: clocking to 48000
ALSA device list:
  #0: Intel 82801DB-ICH4 with AD1981B at 0x34000800, irq 11
ip_conntrack version 2.4 (4094 buckets, 32752 max) - 172 bytes per conntrack
ip_tables: (C) 2000-2006 Netfilter Core Team
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Using IPI Shortcut mode
Time: tsc clocksource has been installed.
Time: acpi_pm clocksource has been installed.
ReiserFS: hda5: found reiserfs format "3.6" with standard journal
ReiserFS: hda5: using ordered data mode
ReiserFS: hda5: journal params: device hda5, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
ReiserFS: hda5: checking transaction log (hda5)
ReiserFS: hda5: replayed 4 transactions in 2 seconds
ReiserFS: hda5: Using r5 hash to sort names
VFS: Mounted root (reiserfs filesystem) readonly.
Freeing unused kernel memory: 244k freed
nvidia: module license 'NVIDIA' taints kernel.
ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKG] -> GSI 10 (level, low) -> IRQ 10
NVRM: loading NVIDIA Linux x86 Kernel Module  1.0-8774  Tue Aug  1 20:54:08 PDT 2006
Adding 489940k swap on /dev/hda6.  Priority:-1 extents:1 across:489940k
Real Time Clock Driver v1.12ac
fbsplash: console 1 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 1
fbsplash: console 2 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 2
fbsplash: console 3 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 3
fbsplash: console 4 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 4
fbsplash: console 5 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 5
fbsplash: console 6 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 6
fbsplash: console 7 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 7
fbsplash: console 8 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 8
fbsplash: console 9 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 9
fbsplash: console 10 using theme 'gentoo-blue'
fbsplash: switched splash state to 'on' on console 10
eth0: link up, 10Mbps, half-duplex, lpa 0x0000


/var/log/Xorg.0.log.old

Code:

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.18-gentoo i686
Current Operating System: Linux satellite 2.6.18-gentoo #2 PREEMPT Sat Oct 14 18:49:03 CEST 2006 i686
Build Date: 13 October 2006
   Before reporting problems, check http://wiki.x.org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct 14 19:58:31 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) |   |-->Monitor "My Monitor"
(**) |   |-->Device "** NVIDIA (generic)                   [nv]"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) FontPath set to:
   /usr/share/fonts/misc/,
   /usr/share/fonts/Type1/,
   /usr/share/fonts/100dpi/,
   /usr/share/fonts/75dpi/
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.3
   X.Org Video Driver: 1.0
   X.Org XInput driver : 0.6
   X.Org Server Extension : 0.3
   X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org Video Driver, version 1.0
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1179,0001 rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 11 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1179,0001 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1179,0001 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1179,0001 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1179,0001 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1179,0001 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1179,0203 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 1179,0001 rev 02 class 07,03,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0175 card 1179,0010 rev a3 class 03,00,00 hdr 00
(II) PCI: 02:07:0: chip 104c,8023 card 1179,0001 rev 00 class 0c,00,10 hdr 00
(II) PCI: 02:09:0: chip 10ec,8139 card 1179,0002 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:0b:0: chip 1179,0617 card c000,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 02:0b:1: chip 1179,0617 card c800,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 02:0d:0: chip 1179,0805 card 1179,0001 rev 03 class 08,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xdbf00000 - 0xdfffffff (0x4100000) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,5), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 2 I/O range:
   [0] -1   0   0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
   [0] -1   0   0xfce00000 - 0xfcefffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0x30000000 - 0x33ffffff (0x4000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 3: bridge is at (2:11:0), (2,3,4), BCTRL: 0x0100 (VGA_EN is cleared)
(II) Bus 3 I/O range:
   [0] -1   0   0x0000c000 - 0x0000c0ff (0x100) IX[B]
   [1] -1   0   0x0000c400 - 0x0000c4ff (0x100) IX[B]
(II) Bus 3 prefetchable memory range:
   [0] -1   0   0x30000000 - 0x31ffffff (0x2000000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 5: bridge is at (2:11:1), (2,5,8), BCTRL: 0x0100 (VGA_EN is cleared)
(II) Bus 5 I/O range:
   [0] -1   0   0x0000c800 - 0x0000c8ff (0x100) IX[B]
   [1] -1   0   0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 5 prefetchable memory range:
   [0] -1   0   0x32000000 - 0x33ffffff (0x2000000) MX[B]
(--) PCI:*(1:0:0) nVidia Corporation NV17 [GeForce4 420 Go] rev 163, Mem @ 0xfd000000/24, 0xdc000000/26, 0xdbf80000/19
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [5] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xefffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [1] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [2] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [3] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [4] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [5] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [6] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [7] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [8] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [9] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [10] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [11] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [12] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [13] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [14] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [15] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [16] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [17] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [18] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [19] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [20] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [21] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) Inactive PCI resource ranges:
   [0] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [1] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [2] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [1] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [2] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [3] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [4] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [5] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [6] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [7] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [8] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [9] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [10] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [11] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [12] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [13] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [14] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [15] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [16] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [17] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [18] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [19] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [20] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [21] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) Inactive PCI resource ranges after removing overlaps:
   [0] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [1] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [2] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [5] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [19] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [20] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [21] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [22] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [23] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [24] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [25] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [26] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [27] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [28] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [29] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [30] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
   compiled for 7.1.1, module version = 2.1.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.8774
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
   compiled for 4.0.2, module version = 1.0.8774
   Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.1.1
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.1.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.6
(II) NVIDIA dlloader X Driver  1.0-8774  Tue Aug  1 20:55:35 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 0.1.0
   ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [19] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [20] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [21] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [22] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [23] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [24] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [25] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [26] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [27] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [28] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [29] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [30] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) resource ranges after probing:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [17] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [18] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [19] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [20] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [21] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [22] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [23] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [24] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [25] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [26] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [27] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [28] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [29] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [30] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [31] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [32] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [33] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
   [34] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [35] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Enabling RENDER acceleration
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Sun Oct 15, 2006 11:09 am    Post subject: Reply with quote

I have even tried using the official nvidia package, but nothing changed. Looks like this version of driver won't work with my vga :?
Back to top
View user's profile Send private message
Naib
Watchman
Watchman


Joined: 21 May 2004
Posts: 6051
Location: Removed by Neddy

PostPosted: Sun Oct 15, 2006 2:12 pm    Post subject: Reply with quote

are you trying to use the nvidia-drivers or the nvidia-legacy-drivers
I have a feeling that card is too old (w.r.t. nvidia) for the new standard of drivers
_________________
Quote:
Removed by Chiitoo
Back to top
View user's profile Send private message
tomi.e
n00b
n00b


Joined: 24 Aug 2006
Posts: 68
Location: Slovenia

PostPosted: Sun Oct 15, 2006 3:26 pm    Post subject: Reply with quote

Naib wrote:
are you trying to use the nvidia-drivers or the nvidia-legacy-drivers
I have a feeling that card is too old (w.r.t. nvidia) for the new standard of drivers

I thought of it too. But the nvidia README file says that nvidia-drivers are the proper package for this chip (geforce go 420 32m).
_________________
silence kills the revolution
Back to top
View user's profile Send private message
96140
Retired Dev
Retired Dev


Joined: 23 Jan 2005
Posts: 1324

PostPosted: Sun Oct 15, 2006 6:05 pm    Post subject: Reply with quote

Still, try switching to nVidia-legacy-drivers and see if that makes a difference.
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Mon Oct 16, 2006 8:04 am    Post subject: Reply with quote

I tried emerging nvidia-legacy-drivers, and things looked a bit different: X can be started, i can see the NVidia splash screen, but after that i can only see a black screen with vertical white stripes. This time the computer doesn't freeze, but the only thing i can do is to reboot it.... Maybe configuration errors in /etc/X11/xorg.conf :?: :?: :?:
Back to top
View user's profile Send private message
Pseud
Apprentice
Apprentice


Joined: 19 Mar 2004
Posts: 273
Location: Bangalore, India

PostPosted: Mon Oct 16, 2006 1:58 pm    Post subject: Reply with quote

darkscreamer,

I have a Toshiba Satellite Pro 6100 with the same graphics card. I had similar problems.
Please see this post of mine.
I get a hard freeze if the kernel is compiled with AGP support (either as a module or built in), i.e., with anything other than CONFIG_AGP=n
You will also find an Xorg.conf in that post which works (only) for a 1600x1450 resolution (which is all I want).

Hope this helps

PS: And btw, you don't need legacy drivers. I have x11-drivers/nvidia-drivers-1.0.8774 working just fine.
_________________
eschew obfuscation
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Tue Oct 17, 2006 8:58 am    Post subject: Reply with quote

Thanks for the help, Pseud, but your suggestion aided me only in part. I tried with both in-kernel agp module and nvidia driver module, but it didn't change the situation. I've removed the kernel module now that you said that it worked for you. I edited your xorg.conf to fit my screen size and added the options to /etc/moules.d/nvidia. With nvidia-drivers the result was always the same: black screen, and freezed computer. Removing nvidia-drivers and emerging nvidia-legacy-drivers gave another result: this time X works, but there are two big black bars on the right side of the screen. Maybe i made mistakes while editing your xorg.conf. How should i modify it to make it work on a 1024x768 display?
Back to top
View user's profile Send private message
Pseud
Apprentice
Apprentice


Joined: 19 Mar 2004
Posts: 273
Location: Bangalore, India

PostPosted: Tue Oct 17, 2006 4:28 pm    Post subject: Reply with quote

darkscreamer,

I'd be glad to help you out - I remember how frustrated I was with the hard freezes for a few days. Seems like a lot of Toshibas have similar issues.

It is strange that the nvidia-drivers package doesn't work for you, since I have the very same nVidia chipset.

First, let me point out a few things you could try with nvidia-drivers, before you decide to give up on it.
After you re-compiled your kernel with CONFIG_AGP=n, did you recompile nvidia-drivers? It is safest to do that. Also, did you (as root) do a
Code:

# modules-update

after you edited /etc/modules.d/nvidia to have
Code:

options nvidia NVreg_SoftEDIDs=0 NVreg_Mobile=1

(I guess the post I pointed you to wasn't exactly clear about this).
That step (modules-update) will be needed each time you edit /etc/modules.d/nvidia. (Unless you reboot, in which case it is taken care of during boot up).
Also, some people have reported that NVreg_Mobile=4 is the setting that works for them; you might want to try that.

About xorg.conf for a 1024x768 resolution, you will have to make the following changes:
[1] In the Monitor section, replace the modeline with this one:
Code:

Modeline "1024x768"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync

In case you want to try other modelines, they can be generated by the gtf utility, like so:
Code:

$ gtf 1024 768 60
  # 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
  Modeline "1024x768_60.00"  64.11  1024 1080 1184 1344  768 769 772 795  -HSync +Vsync

For the above, I've used a 60 Hz refresh rate, which should work fine for LCD/TFT displays.

[2] In the Monitor section, change the DisplaySize to reflect your screen size (in mm).
Instead of measuring this, I like to have a 96x96 DPI (dots per inch) setting since otherwise the fonts start looking weird.
If you want a similar thing, you should use a formula like:
ScreenWidth = [(1024 dots)/(96 dpi)]*(25.4 mm/inch) := 271
ScreenHeight = 768/96*25.4 := 203
so that your line would be
Code:

DisplaySize   271 203


[3] In the Screen section, change 1400x1050 to 1024x768. Also change the virtual line to reflect your resolution.

[4] The Option "xyz" lines in the "Device" section correspond to options available with nvidia-drivers. These might not be available with the legacy drivers. Particularly, the UseEDID option is new. The equivalent to the following two lines
Code:

  Option   "UseEDIDDpi" "false"
  Option   "UseEDIDFreqs" "false"

used to just be
Code:

  Option   "IgnoreEDID" "true"

In fact, prior to changing to nvidia-drivers from nvidia-glx + nvidia-kernel (which are now being out-dated), I used to have this working section:
Code:

Section "Device"
    Identifier  "Card0"
    Driver      "nvidia"
    #Driver      "nv"
    VendorName   "nVidia Corporation"
    BoardName   "NV17 [GeForce4 420 Go]"
    Option   "NoLogo" "true"
   
    Option    "RenderAccel" "true"
    Option   "NvAGP"   "2"
    Option   "AllowGLXWithComposite" "true"
   
    Option   "IgnoreEDID" "true"
EndSection

If you use the legacy drivers, you might have to use something like the above, but I'm not sure.

[5] While tweaking your xorg.conf, you should invoke startx like so:
Code:

startx --logverbose 5

This will make the nVidia driver be more verbose when it logs into /var/log/Xorg.0.log
Could you post this log here? (remove irrelevant portions if it seems too long). This might help us fine tune the xorg.conf
_________________
eschew obfuscation
Back to top
View user's profile Send private message
jbdubbs
n00b
n00b


Joined: 04 Jan 2006
Posts: 41

PostPosted: Tue Oct 17, 2006 5:01 pm    Post subject: Reply with quote

It looks to me from your log like the driver is failing after it tries to enable RenderAccel.

try this:

Option "RenderAccel" "false"

in your device section.
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Wed Oct 18, 2006 8:42 am    Post subject: Reply with quote

I edited your xorg.conf following your instructions and X won't start. Here's the logfile:

Code:
X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.18-gentoo i686
Current Operating System: Linux satellite 2.6.18-gentoo #3 PREEMPT Sat Oct 14 21:26:09 CEST 2006 i686
Build Date: 13 October 2006
   Before reporting problems, check http://wiki.x.org
   to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
   (++) from command line, (!!) notice, (II) informational,
   (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct 18 10:36:38 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) |   |-->Monitor "My Monitor"
(**) |   |-->Device "** NVIDIA (generic)                   [nv]"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) FontPath set to:
   /usr/share/fonts/misc/,
   /usr/share/fonts/Type1/,
   /usr/share/fonts/100dpi/,
   /usr/share/fonts/75dpi/
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Module ABI versions:
   X.Org ANSI C Emulation: 0.3
   X.Org Video Driver: 1.0
   X.Org XInput driver : 0.6
   X.Org Server Extension : 0.3
   X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org Video Driver, version 1.0
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1179,0001 rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 11 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1179,0001 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1179,0001 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1179,0001 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1179,0001 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1179,0001 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1179,0203 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 1179,0001 rev 02 class 07,03,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0175 card 1179,0010 rev a3 class 03,00,00 hdr 00
(II) PCI: 02:07:0: chip 104c,8023 card 1179,0001 rev 00 class 0c,00,10 hdr 00
(II) PCI: 02:09:0: chip 10ec,8139 card 1179,0002 rev 10 class 02,00,00 hdr 00
(II) PCI: 02:0b:0: chip 1179,0617 card c000,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 02:0b:1: chip 1179,0617 card c800,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 02:0d:0: chip 1179,0805 card 1179,0001 rev 03 class 08,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
   [0] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
   [0] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B]
(II) Bus 1 prefetchable memory range:
   [0] -1   0   0xdbf00000 - 0xdfffffff (0x4100000) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,5), BCTRL: 0x0000 (VGA_EN is cleared)
(II) Bus 2 I/O range:
   [0] -1   0   0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
   [0] -1   0   0xfce00000 - 0xfcefffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
   [0] -1   0   0x30000000 - 0x33ffffff (0x4000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 3: bridge is at (2:11:0), (2,3,4), BCTRL: 0x0100 (VGA_EN is cleared)
(II) Bus 3 I/O range:
   [0] -1   0   0x0000c000 - 0x0000c0ff (0x100) IX[B]
   [1] -1   0   0x0000c400 - 0x0000c4ff (0x100) IX[B]
(II) Bus 3 prefetchable memory range:
   [0] -1   0   0x30000000 - 0x31ffffff (0x2000000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 5: bridge is at (2:11:1), (2,5,8), BCTRL: 0x0100 (VGA_EN is cleared)
(II) Bus 5 I/O range:
   [0] -1   0   0x0000c800 - 0x0000c8ff (0x100) IX[B]
   [1] -1   0   0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 5 prefetchable memory range:
   [0] -1   0   0x32000000 - 0x33ffffff (0x2000000) MX[B]
(--) PCI:*(1:0:0) nVidia Corporation NV17 [GeForce4 420 Go] rev 163, Mem @ 0xfd000000/24, 0xdc000000/26, 0xdbf80000/19
(II) Addressable bus resource ranges are
   [0] -1   0   0x00000000 - 0xffffffff (0x0) MX[B]
   [1] -1   0   0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
   [0] -1   0   0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [5] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xefffffff to 0xdfffffff
(II) Active PCI resource ranges:
   [0] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [1] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [2] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [3] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [4] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [5] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [6] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [7] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [8] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [9] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [10] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [11] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [12] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [13] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [14] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [15] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [16] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [17] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [18] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [19] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [20] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [21] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) Inactive PCI resource ranges:
   [0] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [1] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [2] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
(II) Active PCI resource ranges after removing overlaps:
   [0] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [1] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [2] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [3] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [4] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [5] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [6] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [7] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [8] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [9] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [10] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [11] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [12] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [13] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [14] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [15] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [16] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [17] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [18] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [19] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [20] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [21] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) Inactive PCI resource ranges after removing overlaps:
   [0] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [1] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [2] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [5] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [19] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [20] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [21] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [22] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [23] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [24] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [25] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [26] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [27] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [28] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [29] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [30] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   Module class: X.Org Server Extension
   ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
   compiled for 7.1.1, module version = 2.1.0
   Module class: X.Org Font Renderer
   ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "nv"
(II) Loading /usr/lib/xorg/modules/drivers/nv_drv.so
(II) Module nv: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.2.0
   Module class: X.Org Video Driver
   ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.1.1
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.1.0
   Module class: X.Org XInput Driver
   ABI class: X.Org XInput driver, version 0.6
(II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2,
   Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64,
   Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400,
   GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go,
   GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra,
   Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420,
   GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go,
   GeForce4 420 Go 32M, GeForce4 460 Go, Quadro4 550 XGL,
   GeForce4 440 Go 64M, Quadro NVS, Quadro4 500 GoGL,
   GeForce4 410 Go 16M, GeForce4 MX 440 with AGP8X,
   GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X,
   GeForce4 MX 4000, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL,
   Quadro4 NVS 280 SD, Quadro4 380 XGL, Quadro NVS 50 PCI,
   GeForce4 448 Go, GeForce4 MX Integrated GPU, GeForce3,
   GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600,
   GeForce4 Ti 4400, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL,
   Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X,
   GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL,
   Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra,
   GeForce FX 5800, Quadro FX 2000, Quadro FX 1000,
   GeForce FX 5600 Ultra, GeForce FX 5600, GeForce FX 5600XT,
   GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700,
   GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200,
   GeForce FX 5200LE, GeForce FX Go5200, GeForce FX Go5250,
   GeForce FX 5500, GeForce FX 5100, GeForce FX Go5200 32M/64M,
   Quadro NVS 55/280 PCI, Quadro FX 500/600 PCI,
   GeForce FX Go53xx Series, GeForce FX Go5100, GeForce FX 5900 Ultra,
   GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra,
   GeForce FX 5900ZT, Quadro FX 3000, Quadro FX 700,
   GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE,
   GeForce FX 5700VE, GeForce FX Go5700, GeForce FX Go5700,
   Quadro FX Go1000, Quadro FX 1100, GeForce 6800 Ultra, GeForce 6800,
   GeForce 6800 LE, GeForce 6800 XE, GeForce 6800 XT, GeForce 6800 GT,
   GeForce 6800 GT, GeForce 6800 GS, GeForce 6800 XT, Quadro FX 4000,
   GeForce 6800 GS, GeForce 6800, GeForce 6800 LE, GeForce 6800 XT,
   GeForce Go 6800, GeForce Go 6800 Ultra, Quadro FX Go1400,
   Quadro FX 3450/4000 SDI, Quadro FX 1400, GeForce 6600 GT,
   GeForce 6600, GeForce 6600 LE, GeForce 6600 VE, GeForce Go 6600,
   GeForce 6610 XL, GeForce Go 6600 TE/6200 TE, GeForce 6700 XL,
   GeForce Go 6600, GeForce Go 6600 GT, Quadro FX 550, Quadro FX 550,
   Quadro FX 540, GeForce 6200, GeForce 6500,
   GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM),
   GeForce 6200 LE, GeForce Go 6200, Quadro NVS 285, GeForce Go 6400,
   GeForce Go 6200, GeForce Go 6400, GeForce 6250, GeForce 6800,
   GeForce 6800 LE, GeForce 6800 GT, GeForce 6800 XT, GeForce 6200,
   GeForce 6200 A-LE, GeForce 7800 GTX, GeForce 7800 GTX,
   GeForce 7800 GT, GeForce 7800 GS, GeForce 7800 SLI, GeForce Go 7800,
   GeForce Go 7800 GTX, Quadro FX 4500, GeForce 7300 LE,
   GeForce 7300 SE, GeForce Go 7200, GeForce Go 7300, GeForce Go 7400,
   GeForce Go 7400 GS, Quadro NVS 110M, Quadro NVS 120M, Quadro FX 350M,
   GeForce 7500 LE, Quadro FX 350, GeForce 7300 GS, GeForce 7600 GT,
   GeForce 7600 GS, GeForce 7300 GT, GeForce 7600 LE, GeForce 7300 GT,
   GeForce Go 7700, GeForce Go 7600, GeForce Go 7600 GT,
   Quadro NVS 300M, GeForce Go 7900 SE, Quadro FX 550M, Quadro FX 560,
   GeForce 7900 GTX, GeForce 7900 GT, GeForce 7900 GS,
   GeForce Go 7900 GS, GeForce Go 7900 GTX, Quadro FX 2500M,
   Quadro FX 1500M, Quadro FX 5500, Quadro FX 3500, Quadro FX 1500,
   Quadro FX 4500 X2, GeForce 6150, GeForce 6150 LE, GeForce 6100,
   GeForce Go 6150, GeForce Go 6100
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset GeForce4 420 Go found
(II) resource ranges after xf86ClaimFixedResources() call:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [17] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [18] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [19] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [20] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [21] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [22] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [23] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [24] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [25] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [26] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [27] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [28] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [29] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [30] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
(II) resource ranges after probing:
   [0] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [1] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [2] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [3] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [4] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [5] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [6] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [7] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [8] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [9] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [10] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [11] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [12] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [13] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [14] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [15] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [16] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B]
   [17] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
   [18] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B]
   [19] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [20] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [21] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [22] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [23] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [24] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [25] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [26] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [27] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [28] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [29] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [30] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [31] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [32] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [33] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
   [34] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B]
   [35] 0   0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org Video Driver, version 1.0
(II) NV(0): Initializing int10
(II) NV(0): Primary V_BIOS segment is: 0xc000
(--) NV(0): Chipset: "GeForce4 420 Go"
(**) NV(0): Depth 24, (--) framebuffer bpp 32
(==) NV(0): RGB weight 888
(==) NV(0): Default visual is TrueColor
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules/libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 0.1.0
   ABI class: X.Org Video Driver, version 1.0
(==) NV(0): Using HW cursor
(--) NV(0): Linear framebuffer at 0xDC000000
(--) NV(0): MMIO registers at 0xFD000000
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.2.0
   ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org Video Driver, version 1.0
(II) NV(0): I2C bus "DDC" initialized.
(II) NV(0): Probing for analog device on output A...
(--) NV(0):   ...found one
(II) NV(0): Probing for analog device on output B...
(--) NV(0):   ...can't find one
(II) NV(0): Probing for EDID on I2C bus A...
(II) NV(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) NV(0): I2C device "DDC:ddc2" removed.
(II) NV(0):   ... none found
(II) NV(0): Probing for EDID on I2C bus B...
(II) NV(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) NV(0): I2C device "DDC:ddc2" removed.
(II) NV(0):   ... none found
(--) NV(0): CRTC 1 is currently programmed for DFP
(II) NV(0): Using DFP on CRTC 1
(--) NV(0): Panel size is 1024 x 768
(II) NV(0): Panel is LVDS
(--) NV(0): VideoRAM: 32768 kBytes
(==) NV(0): Using gamma correction (1.0, 1.0, 1.0)
(II) NV(0): My Monitor: Using hsync range of 31.50-57.00 kHz
(II) NV(0): My Monitor: Using vrefresh value of 60.00 Hz
(II) NV(0): Clock range:  12.00 to 350.00 MHz
(II) NV(0): Not using default mode "640x350" (vrefresh out of range)
(II) NV(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "640x400" (vrefresh out of range)
(II) NV(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "720x400" (vrefresh out of range)
(II) NV(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "640x480" (vrefresh out of range)
(II) NV(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "640x480" (vrefresh out of range)
(II) NV(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "640x480" (vrefresh out of range)
(II) NV(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "800x600" (vrefresh out of range)
(II) NV(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "800x600" (vrefresh out of range)
(II) NV(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "800x600" (vrefresh out of range)
(II) NV(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "800x600" (vrefresh out of range)
(II) NV(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "1024x768" (vrefresh out of range)
(II) NV(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "1024x768" (hsync out of range)
(II) NV(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "1024x768" (hsync out of range)
(II) NV(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1152x864" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1152x864" (unknown reason)
(II) NV(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1280x960" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1280x960" (unknown reason)
(II) NV(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1280x960" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1280x960" (unknown reason)
(II) NV(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1280x1024" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1280x1024" (unknown reason)
(II) NV(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1280x1024" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1280x1024" (unknown reason)
(II) NV(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1280x1024" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1280x1024" (unknown reason)
(II) NV(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1200" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1200" (unknown reason)
(II) NV(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1200" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1200" (unknown reason)
(II) NV(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1200" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1200" (unknown reason)
(II) NV(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1200" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1200" (unknown reason)
(II) NV(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1200" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1200" (unknown reason)
(II) NV(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1792x1344" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1792x1344" (unknown reason)
(II) NV(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1792x1344" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1792x1344" (unknown reason)
(II) NV(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1856x1392" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1856x1392" (unknown reason)
(II) NV(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1856x1392" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1856x1392" (unknown reason)
(II) NV(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1920x1440" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1920x1440" (unknown reason)
(II) NV(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1920x1440" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1920x1440" (unknown reason)
(II) NV(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "832x624" (vrefresh out of range)
(II) NV(0): Not using default mode "416x312" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1152x768" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1152x768" (unknown reason)
(II) NV(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1400x1050" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1400x1050" (unknown reason)
(II) NV(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1400x1050" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1400x1050" (unknown reason)
(II) NV(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1600x1024" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1600x1024" (unknown reason)
(II) NV(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "1920x1440" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "1920x1440" (unknown reason)
(II) NV(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "2048x1536" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "2048x1536" (unknown reason)
(II) NV(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NV(0): Mode "2048x1536" is larger than BIOS programmed panel size of 1024 x 768.  Removing.
(II) NV(0): Not using default mode "2048x1536" (unknown reason)
(II) NV(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) NV(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(--) NV(0): Virtual size is 1024x768 (pitch 1024)
(**) NV(0): *Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(II) NV(0): Modeline "1024x768"   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync
(**) NV(0):  Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(II) NV(0): Modeline "800x600"   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync
(**) NV(0):  Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(II) NV(0): Modeline "640x480"   25.20  640 656 752 800  480 490 492 525 -hsync -vsync
(==) NV(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.0.0
   ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules/libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 1.2.0
   ABI class: X.Org Video Driver, version 1.0
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
   compiled for 7.1.1, module version = 0.1.0
   ABI class: X.Org Video Driver, version 1.0
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
   [0] 0   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B]
   [1] 0   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B]
   [2] 0   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B]
   [3] -1   0   0x00100000 - 0x33ffffff (0x33f00000) MX[B]E(B)
   [4] -1   0   0x000f0000 - 0x000fffff (0x10000) MX[B]
   [5] -1   0   0x000c0000 - 0x000effff (0x30000) MX[B]
   [6] -1   0   0x00000000 - 0x0009ffff (0xa0000) MX[B]
   [7] -1   0   0xfcefff00 - 0xfcefffff (0x100) MX[B]
   [8] -1   0   0x34000a00 - 0x34000aff (0x100) MX[B]
   [9] -1   0   0x34000800 - 0x340009ff (0x200) MX[B]
   [10] -1   0   0x34000400 - 0x340007ff (0x400) MX[B]
   [11] -1   0   0x34000000 - 0x340003ff (0x400) MX[B]
   [12] -1   0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
   [13] -1   0   0xdbf80000 - 0xdbffffff (0x80000) MX[B](B)
   [14] -1   0   0xdc000000 - 0xdfffffff (0x4000000) MX[B](B)
   [15] -1   0   0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
   [16] -1   0   0xfce06800 - 0xfce069ff (0x200) MX[B]
   [17] -1   0   0xfce00000 - 0xfce03fff (0x4000) MX[B]
   [18] -1   0   0xfce06000 - 0xfce067ff (0x800) MX[B]
   [19] 0   0   0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
   [20] 0   0   0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
   [21] 0   0   0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
   [22] -1   0   0x0000ffff - 0x0000ffff (0x1) IX[B]
   [23] -1   0   0x00000000 - 0x000000ff (0x100) IX[B]
   [24] -1   0   0x0000ce00 - 0x0000ceff (0x100) IX[B]
   [25] -1   0   0x00001800 - 0x0000187f (0x80) IX[B]
   [26] -1   0   0x00001400 - 0x000014ff (0x100) IX[B]
   [27] -1   0   0x00001880 - 0x000018bf (0x40) IX[B]
   [28] -1   0   0x00001000 - 0x000010ff (0x100) IX[B]
   [29] -1   0   0x0000bfa0 - 0x0000bfaf (0x10) IX[B]
   [30] -1   0   0x0000bfe4 - 0x0000bfe4 (0x1) IX[B]
   [31] -1   0   0x0000bfe8 - 0x0000bfe8 (0x1) IX[B]
   [32] -1   0   0x0000bff4 - 0x0000bff4 (0x1) IX[B]
   [33] -1   0   0x0000bff8 - 0x0000bff8 (0x1) IX[B]
   [34] -1   0   0x000018c0 - 0x000018df (0x20) IX[B]
   [35] -1   0   0x0000ef80 - 0x0000ef9f (0x20) IX[B]
   [36] -1   0   0x0000efe0 - 0x0000efff (0x20) IX[B]
   [37] 0   0   0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
   [38] 0   0   0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(==) NV(0): Write-combining range (0xdc000000,0x2000000)
(II) NV(0): Using XFree86 Acceleration Architecture (XAA)
   Screen to screen bit blits
   Solid filled rectangles
   8x8 mono pattern filled rectangles
   Indirect CPU to Screen color expansion
   Solid Lines
   Scanline Image Writes
   Offscreen Pixmaps
   Setting up tile and stipple cache:
      32 128x128 slots
      32 256x256 slots
      16 512x512 slots
(==) NV(0): Backing store disabled
(==) NV(0): Silken mouse enabled
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(**) Option "Protocol" "Auto"
(**) Mouse1: Device: "/dev/input/mice"
(**) Mouse1: Protocol: "Auto"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/input/mice"
(==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5 6 7"
(**) Mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
(**) Mouse1: Buttons: 11
(**) Option "CoreKeyboard"
(**) Keyboard1: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard1: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard1: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard1: XkbModel: "pc105"
(**) Option "XkbLayout" "it"
(**) Keyboard1: XkbLayout: "it"
(**) Option "CustomKeycodes" "off"
(**) Keyboard1: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    xkb_keycodes             { include "xfree86+aliases(qwerty)" };
    xkb_types                { include "complete" };
    xkb_compatibility        { include "complete" };
    xkb_symbols              { include "pc(pc105)+it" };
    xkb_geometry             { include "pc(pc105)" };
(--) Mouse1: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse1: ps2EnableDataReporting: succeeded
Back to top
View user's profile Send private message
Pseud
Apprentice
Apprentice


Joined: 19 Mar 2004
Posts: 273
Location: Bangalore, India

PostPosted: Wed Oct 18, 2006 4:57 pm    Post subject: Reply with quote

That log doesn't contain any errors or warnings. I'm afraid I don't know much beyond what I suggested in my earlier posts.
Others in the forum might be able to help -- good luck.
_________________
eschew obfuscation
Back to top
View user's profile Send private message
darkscreamer
Tux's lil' helper
Tux's lil' helper


Joined: 14 Oct 2006
Posts: 134
Location: The Pirate State of Napoli

PostPosted: Wed Oct 18, 2006 5:27 pm    Post subject: Reply with quote

I'll just keep on trying different settings until i can get the whole thing work.... :x
With your suggestions, i managed to make X start at least :P .
Thanks for the help :) .
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum