On Wed, Jun 05, 2002 at 10:46:23 +0200, "Beerse, Corni" wrote:
> Where is my error? Can someone send me a XF86Config file that includes the
> use of vnc?

Here's a sample config that works.

Your driver should be called nv_drv.o (not nv_drv.0 by the way) and
it should be located in /usr/X11R6/lib/modules/drivers. Make sure
you download the one from the xf4vnc site.

Alan.

----

Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "vncMouse" "ExtraPointer"
        InputDevice    "vncKeyboard" "ExtraKeyboard"
EndSection

Section "Files"
    RgbPath     "/usr/X11R6/lib/X11/rgb"
    FontPath   "unix/:7100"
EndSection

Section "Module"
        Load  "GLcore"
        Load  "dbe"
        Load "fbdevhw"
        Load "dri"
        Load  "glx"
        Load  "record"
        Load  "freetype"
        Load "extmod"
        Load "vnc"
EndSection

Section "InputDevice"
        Identifier "vncMouse"
        # You can ignore the complaints about couldn't load
        # This is a built-in module in the vnc.so
        Driver "rfbmouse"
EndSection

Section "InputDevice"
        Identifier "vncKeyboard"
        # You can ignore the complaints about couldn't load
        # This is a built-in module in the vnc.so
        Driver "rfbkeyb"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option  "XkbRules"      "xfree86"
        Option  "XkbModel"      "pc105"
        Option  "XkbLayout"     "uk"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "PS/2"
        Option      "Device" "/dev/psaux"
        Option      "ZAxisMapping" "4 5"
        Option      "Emulate3Buttons" "yes"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync   30 - 121
        VertRefresh 50 - 180 
        Option "dpms"
EndSection

Section "Device"
        Identifier   "NVIDIA GeForce 3 (generic)"
        VendorName   "NVIDIA GeForce 3 (generic)"
        BoardName     "NVIDIA GeForce 3 (generic)"

        Driver       "nv"
        BusID "PCI:1:0:0"

        Option "usevnc"
EndSection

Section "Screen"
        Identifier   "Screen0"
        Device       "NVIDIA GeForce 3 (generic)"
        Monitor      "Monitor0"
        DefaultDepth    24

        Subsection "Display"
                Depth       24 
                Modes       "1024x768"
        EndSubsection
EndSection
_______________________________________________
VNC-List mailing list
[EMAIL PROTECTED]
http://www.realvnc.com/mailman/listinfo/vnc-list

Reply via email to