Xfree86 4.0 XF86Config help needed

Xfree86 4.0 XF86Config help needed

Post by Harvey Londo » Sat, 06 May 2000 04:00:00



I have successfully installed the server and it runs except for one problem. I
can't get it to run at any resolution other then 640x480. I've tried adding and
removing everything I can think of from the xf86config file. Nothing seems to
make a difference. My configuration is as follows: AMD K2/500, 256MB RAM, PCI
video with SIS 6326 chip set, and Mandrake 7.0. I installed the binary package
of Xfree86 for glibc2.1.  Any help would be appreciated.
Thanks,
Harvey

Here is a copy of my XF86Config file:

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

Section "Files"
EndSection

Section "Module"
Load  "extmod"
Load  "xie"
Load  "pex5"
Load  "glx"
Load  "dri"
Load  "GLcore"
Load  "dbe"
Load  "record"
EndSection

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

Section "InputDevice"
Identifier  "Mouse0"
Driver      "mouse"
Option      "Protocol" "PS/2"
Option      "Device" "/dev/mouse"
EndSection

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

Section "Device"
### Available Driver options are:-
        #Option     "SWcursor"
        #Option     "HWcursor"
        #Option     "PciRetry"
        #Option     "rgbbits"
        #Option     "NoAccel"
        #Option     "TurboQueue"
        #Option     "SetMClk"
        #Option     "FastVram"
Identifier  "SiS 6326"
Driver      "sis"
VendorName  "SiS"
BoardName   "6326"
BusID       "PCI:0:9:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device     "SiS 6326"
Monitor    "Monitor0"
DefaultColorDepth 16
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

Section "DRI"
EndSection

 
 
 

Xfree86 4.0 XF86Config help needed

Post by Duane Evenso » Sun, 07 May 2000 04:00:00


You need to specify some modes and modelines. Here is what I have (I also have a
SIS 6326):
Section "Monitor"
 Identifier   "My New Monitor"
 VendorName   "Acana"
 ModelName    "Professional 15Sp"
 HorizSync    30-70
 VertRefresh  50-120
 Option       "dpms"
 ModeLine     "640x480"   31.500  640  669  743  771  480  480  488  495
 ModeLine     "800x600"   49.000  800  867  995 1032  600  631  639  653
 ModeLine     "1024x768"  78.518 1024 1044 1275 1307  768  768  777  801
# ModeLine     "1280x1024" 100.00 1280 1308 1572 1600 1024 1024 1033 1075
# Modeline     "1152x864"  100.00 1152 1180 1412 1440  864  864  874  907
EndSection

Section "Device"
 ### Available Driver options are:-
        #Option     "SWcursor"
        #Option     "HWcursor"
        #Option     "PciRetry"
        #Option     "rgbbits"
        #Option     "NoAccel"
        #Option     "TurboQueue"
        #Option     "SetMClk"
        #Option     "FastVram"
 Identifier  "My New Video Card"
 Driver      "sis"
 VendorName  "Multimedia"
 BoardName   "6326"
 BusID       "PCI:0:14:0"
 VideoRam    4096
 Option      "FastVram"
EndSection

Section "Screen"
 Identifier "Screen0"
 Device     "My New Video Card"
 Monitor    "My New Monitor"
 DefaultDepth   24
 SubSection "Display"
  Depth       4
  Modes       "1024x768" "800x600" "640x480"
  Virtual     1024 768
  ViewPort    0 0
 EndSubSection
 SubSection "Display"
  Depth       8
  Modes       "1024x768" "800x600" "640x480"
  Virtual     1024 768
  ViewPort    0 0
 EndSubSection
 SubSection "Display"
  Depth       15
  Modes       "1024x768" "800x600" "640x480"
  Virtual     1024 768
  ViewPort    0 0
 EndSubSection
 SubSection "Display"
  Depth       16
  Modes       "1024x768" "800x600" "640x480"
  Virtual     1024 768
  ViewPort    0 0
 EndSubSection
 SubSection "Display"
  Depth       24
  Modes       "1024x768" "800x600" "640x480"
  Virtual     1024 768
  ViewPort    0 0
 EndSubSection
EndSection


> I have successfully installed the server and it runs except for one problem. I
> can't get it to run at any resolution other then 640x480. I've tried adding and
> removing everything I can think of from the xf86config file. Nothing seems to
> make a difference. My configuration is as follows: AMD K2/500, 256MB RAM, PCI
> video with SIS 6326 chip set, and Mandrake 7.0. I installed the binary package
> of Xfree86 for glibc2.1.  Any help would be appreciated.
> Thanks,
> Harvey

> Here is a copy of my XF86Config file:

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

> Section "Files"
> EndSection

> Section "Module"
> Load  "extmod"
> Load  "xie"
> Load  "pex5"
> Load  "glx"
> Load  "dri"
> Load  "GLcore"
> Load  "dbe"
> Load  "record"
> EndSection

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

> Section "InputDevice"
> Identifier  "Mouse0"
> Driver      "mouse"
> Option      "Protocol" "PS/2"
> Option      "Device" "/dev/mouse"
> EndSection

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

> Section "Device"
> ### Available Driver options are:-
>         #Option     "SWcursor"
>         #Option     "HWcursor"
>         #Option     "PciRetry"
>         #Option     "rgbbits"
>         #Option     "NoAccel"
>         #Option     "TurboQueue"
>         #Option     "SetMClk"
>         #Option     "FastVram"
> Identifier  "SiS 6326"
> Driver      "sis"
> VendorName  "SiS"
> BoardName   "6326"
> BusID       "PCI:0:9:0"
> EndSection

> Section "Screen"
> Identifier "Screen0"
> Device     "SiS 6326"
> Monitor    "Monitor0"
> DefaultColorDepth 16
> 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

> Section "DRI"
> EndSection


 
 
 

Xfree86 4.0 XF86Config help needed

Post by Harvey Londo » Sun, 07 May 2000 04:00:00


Per someone's suggestion, I ran the xf86config utility and it created the
modelines for me. After some small mods I got it working they way I like.
Thanks for the suggestions,
Harvey

modelines. Here is what I have (I also have a >SIS 6326):

>Section "Monitor"
> Identifier   "My New Monitor"
> VendorName   "Acana"
> ModelName    "Professional 15Sp"
> HorizSync    30-70
> VertRefresh  50-120
> Option       "dpms"
> ModeLine     "640x480"   31.500  640  669  743  771  480  480  488  495
> ModeLine     "800x600"   49.000  800  867  995 1032  600  631  639  653
> ModeLine     "1024x768"  78.518 1024 1044 1275 1307  768  768  777  801
># ModeLine     "1280x1024" 100.00 1280 1308 1572 1600 1024 1024 1033 1075
># Modeline     "1152x864"  100.00 1152 1180 1412 1440  864  864  874  907
>EndSection

>Section "Device"
> ### Available Driver options are:-
>        #Option     "SWcursor"
>        #Option     "HWcursor"
>        #Option     "PciRetry"
>        #Option     "rgbbits"
>        #Option     "NoAccel"
>        #Option     "TurboQueue"
>        #Option     "SetMClk"
>        #Option     "FastVram"
> Identifier  "My New Video Card"
> Driver      "sis"
> VendorName  "Multimedia"
> BoardName   "6326"
> BusID       "PCI:0:14:0"
> VideoRam    4096
> Option      "FastVram"
>EndSection

>Section "Screen"
> Identifier "Screen0"
> Device     "My New Video Card"
> Monitor    "My New Monitor"
> DefaultDepth   24
> SubSection "Display"
>  Depth       4
>  Modes       "1024x768" "800x600" "640x480"
>  Virtual     1024 768
>  ViewPort    0 0
> EndSubSection
> SubSection "Display"
>  Depth       8
>  Modes       "1024x768" "800x600" "640x480"
>  Virtual     1024 768
>  ViewPort    0 0
> EndSubSection
> SubSection "Display"
>  Depth       15
>  Modes       "1024x768" "800x600" "640x480"
>  Virtual     1024 768
>  ViewPort    0 0
> EndSubSection
> SubSection "Display"
>  Depth       16
>  Modes       "1024x768" "800x600" "640x480"
>  Virtual     1024 768
>  ViewPort    0 0
> EndSubSection
> SubSection "Display"
>  Depth       24
>  Modes       "1024x768" "800x600" "640x480"
>  Virtual     1024 768
>  ViewPort    0 0
> EndSubSection
>EndSection


>> I have successfully installed the server and it runs except for one problem. I
>> can't get it to run at any resolution other then 640x480. I've tried adding and
>> removing everything I can think of from the xf86config file. Nothing seems to
>> make a difference. My configuration is as follows: AMD K2/500, 256MB RAM, PCI
>> video with SIS 6326 chip set, and Mandrake 7.0. I installed the binary package
>> of Xfree86 for glibc2.1.  Any help would be appreciated.
>> Thanks,
>> Harvey

>> Here is a copy of my XF86Config file:

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

>> Section "Files"
>> EndSection

>> Section "Module"
>> Load  "extmod"
>> Load  "xie"
>> Load  "pex5"
>> Load  "glx"
>> Load  "dri"
>> Load  "GLcore"
>> Load  "dbe"
>> Load  "record"
>> EndSection

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

>> Section "InputDevice"
>> Identifier  "Mouse0"
>> Driver      "mouse"
>> Option      "Protocol" "PS/2"
>> Option      "Device" "/dev/mouse"
>> EndSection

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

>> Section "Device"
>> ### Available Driver options are:-
>>         #Option     "SWcursor"
>>         #Option     "HWcursor"
>>         #Option     "PciRetry"
>>         #Option     "rgbbits"
>>         #Option     "NoAccel"
>>         #Option     "TurboQueue"
>>         #Option     "SetMClk"
>>         #Option     "FastVram"
>> Identifier  "SiS 6326"
>> Driver      "sis"
>> VendorName  "SiS"
>> BoardName   "6326"
>> BusID       "PCI:0:9:0"
>> EndSection

>> Section "Screen"
>> Identifier "Screen0"
>> Device     "SiS 6326"
>> Monitor    "Monitor0"
>> DefaultColorDepth 16
>> 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

>> Section "DRI"
>> EndSection