XF86Config und fBSD 4.8

Patrick K.

lBSD_de Team
hallo zusammen,

ich habe ein problem mit meiner XF86Config. ich habe die config ueber "X -configure" erstellt und ansich startet alles korrekt... ein "XFree86 - xf86config /bla/bla/XF86Config.new" funzt auch einwandfrei.... startx funzt auch!

nur habe ich immer die aufloesung von 640x480. ich habe schon in der screen section unter 16 folgendes eingetrage aber ohen erfolg :

Modes "800x600"
ViewPort 0 0

aber hier im anhang mal die config (ohne Modes und Viewport):
Code:
Section "ServerLayout"
        Identifier     "XFree86 Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
        Load  "record"
        Load  "xtrap"
        Load  "speedo"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/sysmouse"
EndSection

Section "Monitor"
        #DisplaySize      270   200     # mm
        Identifier   "Monitor0"
        VendorName   "LIF"
        ModelName    "1554"
        Option      "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"                  # [<bool>]
        #Option     "HWcursor"                  # [<bool>]
        #Option     "NoAccel"                   # [<bool>]
        #Option     "ShowCache"                 # [<bool>]
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "UseFBDev"                  # [<bool>]
        #Option     "Rotate"                    # [<str>]
        #Option     "VideoKey"                  # <i>
        #Option     "FlatPanel"                 # [<bool>]
        #Option     "FPDither"                  # [<bool>]
        #Option     "CrtcNumber"                # <i>
        Identifier  "Card0"
        Driver      "nv"
        VendorName  "nVidia Corporation"
        BoardName   "NV5M64 [RIVA TNT2 Model 64/Model 64 Pro]"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Depth     1
        EndSubSection
        SubSection "Display"
                Depth     4
        EndSubSection
        SubSection "Display"
                Depth     8
        EndSubSection
        SubSection "Display"
                Depth     15
        EndSubSection
        SubSection "Display"
                Depth     16
        EndSubSection
        SubSection "Display"
                Depth     24
        EndSubSection
EndSection

xvidtune -show gibt auch 640 480 aus!

fuer hilfe bin ich dankbar, da ich nicht ger nen kenner von x und der config bin !!!

mfg
 
Du solltest dem X Server ja auch ein paar Modi geben, aus denen er waehlen kann. Kein wunder wenn ernur 640x480 faehrt (fallback)

Code:
Subsection "Display"
        Depth       8
        Modes       "1440x1080" "1280x960" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1440x1080" "512x384" "640x480" "768x576" "800x600" "1024x768" "1280x960"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1440x1080" "1280x960" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection

So sieht das zB bei mir aus.
 
Mahlzeit

Mein X-Server läuft auch einwandfrei.

Nur würde ich gern die deutsche Tastatur benutzen.
Wo kann ich die einstellen. Habe es nicht im Handbuch gefunden.
Und TrueType Schriftarten gibt es sowas in den Ports?


danke


CAT
 
Salü Patrick!

Hehe... das hab ich auch mal gehabt... 640x480 aber ein 1600x1200 Monitor und eine nVidia GeForce 4...

Aber ich musste nach langem suchen nur zwei Zeilen einfügen:
Code:
Section "Monitor"
     [...]
     HorizSync     <float> - <float>
     VertRefresh   <float> - <float>
     [...]
EndSection

zum Beispiel:
Code:
Section "Monitor"
     Identifier   "Monitor0"
     VendorName   "Monitor Vendor"
     ModelName    "Monitor Model"
     HorizSync    31.5 - 82.0
     VertRefresh  50.0 - 100.0
EndSection

greets

[tE]bachi
 
die deutsche tastatur geht bei mir so:
Code:
Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "de"
EndSection

mit TT Schriften kämpfe ich auch noch...
 
Zurück
Oben