I am going to write an installer for setting up xorg and graphics drivers.
As I currently only have computers with Nvidia graphics, I need information how other graphics chips are set up, in particular Intel and ATI/AMD.
In case anybody is willing to help me, I would be grateful if you can post the following information of your working configuration:
needed are the lines containing the vgapci devices:
relevant parts of...
...loader.conf
relevant parts of...
...rc.conf
if possible, your full
...xorg.conf
Thank you very much!
As I currently only have computers with Nvidia graphics, I need information how other graphics chips are set up, in particular Intel and ATI/AMD.
In case anybody is willing to help me, I would be grateful if you can post the following information of your working configuration:
pciconf -lv | grep -A4 vgapci
needed are the lines containing the vgapci devices:
Code:
vgapci0@pci0:15:0:0: class=0x030000 card=0x084a10de chip=0x0dd810de rev=0xa1 hdr=0x00 vendor = 'NVIDIA Corporation' device = 'GF106GL [Quadro 2000]' class = display subclass = VGA
relevant parts of...
...loader.conf
Code:
kern.vty="sc" nvidia_load="YES" nvidia_name="nvidia" nvidia_modeset_load="YES" nvidia_modeset_name="nvidia-modeset" linux_load="YES" module_blacklist="vt vesa"
relevant parts of...
...rc.conf
Code:
linux_enable="YES"
if possible, your full
...xorg.conf
Code:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig # nvidia-xconfig: version 390.138 (buildmeister@swio-display-x64-rhel04-03) Thu May 14 04:05:40 PDT 2020 Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" EndSection Section "Files" EndSection Section "InputDevice" # generated from default Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "keyboard" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Unknown" ModelName "Unknown" HorizSync 28.0 - 33.0 VertRefresh 43.0 - 72.0 Option "DPMS" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 EndSubSection EndSection
Thank you very much!