Hi all,
I'm turning over to you after researching the handbook and google.
I have a Dell Optiplex FX160 with a SiS Mirage 3D Graphics that is supposed to handle 1920x1200 ([SiS] 771/671 PCIE VGA Display Adapter rev 16 <- from the Xorg.log file)
This computer is connected to my HDTV which does 1920x1080, But the maximum resolution I get under XFCE4 is 1024x768.
If I export the display on another computer I can get 1280x1024
I tried several setting changes in the /etc/X11/xorg.conf file as well as installing drivers but I can't get a better resolution than that.
Below are all the ports that were installed for Xorg:
Here are the drivers installed:
my /etx/X11/xorg.conf configuration file:
and here is the /var/log/Xorg.0.log output, it looks like it detects the 1920x1080 mode but can't find the right timing:
You can find the whole output of the Xorg.0.log file here: http://pastie.org/1886471
Any help is appreciated!
Thanks
I'm turning over to you after researching the handbook and google.
I have a Dell Optiplex FX160 with a SiS Mirage 3D Graphics that is supposed to handle 1920x1200 ([SiS] 771/671 PCIE VGA Display Adapter rev 16 <- from the Xorg.log file)
This computer is connected to my HDTV which does 1920x1080, But the maximum resolution I get under XFCE4 is 1024x768.
If I export the display on another computer I can get 1280x1024
I tried several setting changes in the /etc/X11/xorg.conf file as well as installing drivers but I can't get a better resolution than that.
Below are all the ports that were installed for Xorg:
Code:
# pkg_info | grep xorg
linux-f10-xorg-libs-7.4_1 Xorg libraries (Linux Fedora 10)
xorg-7.5.1 X.Org complete distribution metaport
xorg-apps-7.5.1 X.org apps meta-port
xorg-cf-files-1.0.3 X.org cf files for use with imake builds
xorg-docs-1.4,1 X.org documentation files
xorg-drivers-7.5.1 X.org drivers meta-port
xorg-fonts-100dpi-7.5.1 X.Org 100dpi bitmap fonts
xorg-fonts-7.5.1 X.org fonts meta-port
xorg-fonts-75dpi-7.5.1 X.Org 75dpi bitmap fonts
xorg-fonts-cyrillic-7.5.1 X.Org Cyrillic bitmap fonts
xorg-fonts-miscbitmaps-7.5.1 X.Org miscellaneous bitmap fonts
xorg-fonts-truetype-7.5.1 X.Org TrueType fonts
xorg-fonts-type1-7.5.1 X.Org Type1 fonts
xorg-libraries-7.5.1 X.org libraries meta-port
xorg-macros-1.11.0 X.Org development aclocal macros
xorg-server-1.7.7_1,1 X.Org X server and related programs
Here are the drivers installed:
Code:
# pkg_info | grep driver
xf86-input-keyboard-1.5.0 X.Org keyboard input driver
xf86-input-mouse-1.6.0 X.Org mouse input driver
xf86-video-ati-6.14.1_1 X.Org ati display driver
xf86-video-mach64-6.8.2_1 X.Org mach64 display driver
xf86-video-nouveau-0.0.10.20090728_3 Free nouveau display driver for nvidia-based cards
xf86-video-nv-2.1.18 X.Org nv display driver
xf86-video-openchrome-0.2.904_3 X.Org openChrome display driver
xf86-video-r128-6.8.1_2 X.Org r128 display driver
xf86-video-radeonhd-1.3.0_4 X.Org ati RadeonHD display driver
[file]xf86-video-sis-0.10.2_2 X.Org sis display driver[/file]
xf86-video-vesa-2.3.0_1 X.Org vesa display driver
xorg-drivers-7.5.1 X.org drivers meta-port
my /etx/X11/xorg.conf configuration file:
Code:
# cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "AllowEmptyInput" "off"
EndSection
Section "Files"
ModulePath "/usr/local/lib/xorg/modules"
FontPath "/usr/local/lib/X11/fonts/misc/"
FontPath "/usr/local/lib/X11/fonts/TTF/"
FontPath "/usr/local/lib/X11/fonts/OTF"
FontPath "/usr/local/lib/X11/fonts/URW/"
FontPath "/usr/local/lib/X11/fonts/Type1/"
FontPath "/usr/local/lib/X11/fonts/100dpi/"
FontPath "/usr/local/lib/X11/fonts/75dpi/"
EndSection
Section "Module"
Load "record"
Load "dri2"
Load "dbe"
Load "extmod"
Load "dri"
Load "glx"
Load "freetype"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/sysmouse"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "sysmouse"
Option "Device" "/dev/sysmouse"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "VIZ"
ModeLine "1920x1080" 138.50 1920 1968 2000 2080 1080 1083 1088 1111
Option "PreferredMode" "1920x1080"
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 "ShadowFB" # [<bool>]
#Option "DefaultRefresh" # [<bool>]
#Option "ModeSetClearScreen" # [<bool>]
Identifier "Card0"
Driver "vesa"
VendorName "Silicon Integrated Systems [SiS]"
BoardName "771/671 PCIE VGA Display Adapter"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1920x1080"
EndSubSection
EndSection
Section "ServerFlags"
Option "AllowEmptyInput" "false"
Option "AutoAddDevices" "false"
EndSection
and here is the /var/log/Xorg.0.log output, it looks like it detects the 1920x1080 mode but can't find the right timing:
Code:
(II) VESA(0): Supported established timings:
(II) VESA(0): 720x400@70Hz
(II) VESA(0): 640x480@60Hz
(II) VESA(0): 640x480@72Hz
(II) VESA(0): 640x480@75Hz
(II) VESA(0): 800x600@56Hz
(II) VESA(0): 800x600@60Hz
(II) VESA(0): 800x600@72Hz
(II) VESA(0): 800x600@75Hz
(II) VESA(0): 1024x768@60Hz
(II) VESA(0): 1024x768@70Hz
(II) VESA(0): 1024x768@75Hz
(II) VESA(0): Manufacturer's mask: 0
(II) VESA(0): Supported detailed timing:
(II) VESA(0): clock: 138.5 MHz Image Size: 1040 x 580 mm
(II) VESA(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
(II) VESA(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
(II) VESA(0): Ranges: V min: 50 V max: 77 Hz, H min: 31 H max: 70 kHz, PixClock max 150 MHz
(II) VESA(0): Serial No: SPFKBL1300282
(II) VESA(0): Monitor name: SV472XVT
(II) VESA(0): EDID (in hex):
(II) VESA(0): 00ffffffffffff00593a630001010101
(II) VESA(0): 0d1401031f683a78ca31c3a3554a9b24
(II) VESA(0): 10474aafce0001010101010101010101
(II) VESA(0): 0101010101011a3680a070381f403020
(II) VESA(0): 350010444200001a000000fd00324d1f
(II) VESA(0): 460f000a202020202020000000ff0053
(II) VESA(0): 50464b424c31333030323832000000fc
(II) VESA(0): 0053563437325856540a20202020006c
(II) VESA(0): EDID vendor "VIZ", prod id 99
(II) VESA(0): Using EDID range info for horizontal sync
(II) VESA(0): Using EDID range info for vertical refresh
(II) VESA(0): Printing DDC gathered Modelines:
[cmd](II) VESA(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz)[/cmd]
(II) VESA(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
(II) VESA(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
(II) VESA(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
(II) VESA(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
(II) VESA(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
(II) VESA(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
(II) VESA(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
(II) VESA(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
(II) VESA(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
(II) VESA(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
(II) VESA(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
You can find the whole output of the Xorg.0.log file here: http://pastie.org/1886471
Any help is appreciated!
Thanks