PDA

View Full Version : Is nvidia compatible with nvidia ? ahem I mean PC-BSD...


RainStaff
04-01-2009, 09:45 AM
I'm struggling to get PC-BSD (32 bit) to load the different nvidia drivers on my configuration. Whatever I try I get back to vesa with a maximum screen resolution of 1280x1024. My system : ASUS P5K, Core 2 Duo e6750, 4GB ram, nvidia 8600 GT, 1680x1050 LCD...

This issue is really frustrating, after several attempts (I even downloaded the drivers from nvidia and make install), the system could not load X anymore. Does anybody have any ideas on how to overcome this problem ? I was really eager to try this promising BSD flavour. The PBI feature and its "dependency hell" free philosophy is really an awesome concept. Nowadays storage isn't an issue anymore and I'd rather sacrifice some space for a cleaner and better organized system.

majnun
04-01-2009, 02:44 PM
My xorg.conf, hope it helps...mine's a GeForce 7150M / nForce 630M laptop built-in card ...



Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/local/lib/X11/rgb"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/Programs/fonts/"
FontPath "/usr/local/lib/X11/fonts/cyrillic/"
FontPath "/usr/local/lib/X11/fonts/TrueType/"
FontPath "/usr/local/lib/X11/fonts/webfonts/"
FontPath "/usr/local/lib/X11/fonts/misc/"
FontPath "/usr/local/lib/X11/fonts/TTF/"
FontPath "/usr/local/lib/X11/fonts/Type1/"
FontPath "/usr/local/lib/X11/fonts/CID/"
FontPath "/usr/local/lib/X11/fonts/75dpi/"
FontPath "/usr/local/lib/X11/fonts/100dpi/"
FontPath "/usr/local/lib/X11/fonts/dejavu/"
FontPath "/usr/local/lib/X11/fonts/local/"
EndSection

Section "Module"
Load "ddc"
Load "dbe"
Load "extmod"
Load "glx"
Load "xtrap"
Load "freetype"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "es"
Option "XkbVariant" ""
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/sysmouse"
Option "Buttons" "6"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons"
EndSection

Section "Extensions"
Option "Composite" "Enable"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection


Section "Device"
Identifier "Card0"
Screen 0
Option "AllowGLXWithComposite" "true"
Option "RenderAccel" "true"
Option "AddARGBGLXVisuals" "true"
Option "UseEvents" "false"
Option "TripleBuffer" "1"
Option "DamageEvents" "1"
Option "BackingStore" "1"
Option "PixmapCacheSize" "70000"
Option "OnDemandVBlankInterrupts" "true"
Option "NoLogo" "True"
Driver "nvidia"
VendorName "nVidia Corporation"
BusID "PCI:0:18:0"
EndSection


Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

RainStaff
04-02-2009, 04:03 AM
I'll try to work around the issue with your help, thanks !