You are not logged in.

#1 2010-04-18 13:34:11

voorhees1979
Member
Registered: 2010-04-18
Posts: 14

[SOLVED]Cannot get 1680x1050

Hey all

New to arch, managed to get it all installed with Gnome. Problem I have is the screen display, with the standard arch setup with this xorg.conf:

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules"
    FontPath     "/usr/share/fonts/misc"
    FontPath     "/usr/share/fonts/100dpi:unscaled"
    FontPath     "/usr/share/fonts/75dpi:unscaled"
    FontPath     "/usr/share/fonts/TTF"
    FontPath     "/usr/share/fonts/Type1"
EndSection

Section "Module"
    Load  "dbe"
    Load  "glx"
    Load  "dri"
    Load  "extmod"
    Load  "dri2"
    Load  "record"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option        "Protocol" "auto"
    Option        "Device" "/dev/input/mice"
    Option        "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
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     "NoAccel"                # [<bool>]
        #Option     "SWcursor"               # [<bool>]
        #Option     "Dac6Bit"                # [<bool>]
        #Option     "Dac8Bit"                # [<bool>]
        #Option     "BusType"                # [<str>]
        #Option     "CPPIOMode"              # [<bool>]
        #Option     "CPusecTimeout"          # <i>
        #Option     "AGPMode"                # <i>
        #Option     "AGPFastWrite"           # [<bool>]
        #Option     "AGPSize"                # <i>
        #Option     "GARTSize"               # <i>
        #Option     "RingSize"               # <i>
        #Option     "BufferSize"             # <i>
        #Option     "EnableDepthMoves"       # [<bool>]
        #Option     "EnablePageFlip"         # [<bool>]
        #Option     "NoBackBuffer"           # [<bool>]
        #Option     "DMAForXv"               # [<bool>]
        #Option     "FBTexPercent"           # <i>
        #Option     "DepthBits"              # <i>
        #Option     "PCIAPERSize"            # <i>
        #Option     "AccelDFS"               # [<bool>]
        #Option     "IgnoreEDID"             # [<bool>]
        #Option     "CustomEDID"             # [<str>]
        #Option     "DisplayPriority"        # [<str>]
        #Option     "PanelSize"              # [<str>]
        #Option     "ForceMinDotClock"       # <freq>
        #Option     "ColorTiling"            # [<bool>]
        #Option     "VideoKey"               # <i>
        #Option     "RageTheatreCrystal"     # <i>
        #Option     "RageTheatreTunerPort"     # <i>
        #Option     "RageTheatreCompositePort"     # <i>
        #Option     "RageTheatreSVideoPort"     # <i>
        #Option     "TunerType"              # <i>
        #Option     "RageTheatreMicrocPath"     # <str>
        #Option     "RageTheatreMicrocType"     # <str>
        #Option     "ScalerWidth"            # <i>
        #Option     "RenderAccel"            # [<bool>]
        #Option     "SubPixelOrder"          # [<str>]
        #Option     "ShowCache"              # [<bool>]
        #Option     "ClockGating"            # [<bool>]
        #Option     "VGAAccess"              # [<bool>]
        #Option     "ReverseDDC"             # [<bool>]
        #Option     "LVDSProbePLL"           # [<bool>]
        #Option     "AccelMethod"            # <str>
        #Option     "DRI"                    # [<bool>]
        #Option     "ConnectorTable"         # <str>
        #Option     "DefaultConnectorTable"     # [<bool>]
        #Option     "DefaultTMDSPLL"         # [<bool>]
        #Option     "TVDACLoadDetect"        # [<bool>]
        #Option     "ForceTVOut"             # [<bool>]
        #Option     "TVStandard"             # <str>
        #Option     "IgnoreLidStatus"        # [<bool>]
        #Option     "DefaultTVDACAdj"        # [<bool>]
        #Option     "Int10"                  # [<bool>]
        #Option     "EXAVSync"               # [<bool>]
        #Option     "ATOMTVOut"              # [<bool>]
        #Option     "R4xxATOM"               # [<bool>]
        #Option     "ForceLowPowerMode"      # [<bool>]
        #Option     "DynamicPM"              # [<bool>]
        #Option     "NewPLL"                 # [<bool>]
        #Option     "ZaphodHeads"            # <str>
    Identifier  "Card0"
    Driver      "radeon"
    VendorName  "ATI Technologies Inc"
    BoardName   "R420 JK [Radeon X800]"
    BusID       "PCI:1:0:0"
EndSection

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

All I can get is 1280x1024. I have antiX which is based on Mepis on a different partition, it is also based on Debian testing so should have all the newer xorg's etc, Now that displays 1680x1050 just fine, so I thought I would try and copy over that xorg.conf to arch which is:

Section "ServerFlags"
    Option "DontZap" "Off"
        Option "AllowMouseOpenFail" "true"
        Option "BlankTime" "0" 
        Option "OffTime" "0"  
EndSection

Section "InputDevice"
  Identifier "Touchpad"
  Driver "synaptics"
  Option "Device" "/dev/psaux"
  Option "Protocol" "auto-dev"
  Option "LeftEdge" "1700"
  Option "RightEdge" "5300"
  Option "TopEdge" "1700"
  Option "BottomEdge" "4200"
  Option "FingerLow" "25"
  Option "FingerHigh" "30"
  Option "MaxTapTime" "180"
  Option "MaxTapMove" "220"
  Option "VertScrollDelta" "100"
  Option "HorizScrollDelta" "0"
  Option "MinSpeed" "0.09"
  Option "MaxSpeed" "0.18"
  Option "AccelFactor" "0.0015"
  Option "SHMConfig" "on"
EndSection

Section "InputDevice"
  Driver "synaptics"
  Identifier "ALPS Touchpad"
  Option "Device" "/dev/input/mouse0"
  Option "Protocol" "event"
  Option "LeftEdge" "130"
  Option "RightEdge" "840"
  Option "TopEdge" "130"
  Option "BottomEdge" "640"
  Option "FingerLow" "7"
  Option "FingerHigh" "8"
  Option "MaxTapTime" "180"
  Option "MaxTapMove" "110"
  Option "EmulateMidButtonTime" "75"
  Option "VertScrollDelta" "20"
  Option "HorizScrollDelta" "0"
  Option "MinSpeed" "0.25"
  Option "MaxSpeed" "0.50"
  Option "AccelFactor" "0.030"
  Option "EdgeMotionMinSpeed" "200"
  Option "EdgeMotionMaxSpeed" "200"
  Option "UpDownScrolling" "1"
  Option "CircularScrolling" "1"
  Option "CircScrollDelta" "0.1"
  Option "CircScrollTrigger" "2"
  Option "SHMConfig" "on"
EndSection

Section "InputDevice"
  Identifier "Appletouch"
  Driver "synaptics"
  Option "Device" "/dev/psaux"
  Option "Protocol" "auto-dev"
  Option "LeftEdge" "100"
  Option "RightEdge" "1120"
  Option "TopEdge" "50"
  Option "BottomEdge" "310"
  Option "FingerLow" "25"
  Option "FingerHigh" "30"
  Option "MaxTapMove" "220"
  Option "TapButton1" "1"
  Option "TapButton2" "3"
  Option "TapButton3" "2"
  Option "MinSpeed" "0.79"
  Option "MaxSpeed" "0.88"
  Option "AccelFactor" "0.0015"
  Option "SHMConfig" "on"
EndSection

Section "Monitor"
  Identifier "Monitor0"
  VendorName "unknown"
  ModelName "unknown"
  Option "DPMS" "true"
  HorizSync    30-75
  VertRefresh  55-70 
EndSection

Section "Device"
  Identifier  "Card0"
  Driver "radeon"
  BoardName "unknown"

  Screen 0
 #Option "UseDisplayDevice" "dfp"
 #Option "MonitorLayout" "crt,crt"
 #BusID  "PCI:1:0:0"
 #Option "sw_cursor" # needed for some ati cards
 #Option "hw_cursor"
 #Option "NoAccel"
 #Option "ShowCache"
 #Option "ShadowFB"
 #Option "UseFBDev"
 #Option "Rotate"
  Option "UseInternalAGPGART" "no"

  Option "XAANoOffscreenPixmaps" "true"

# savage special options, use with care
 #Option "NoUseBios"
 #Option "BusType" "PCI"
  Option "DmaMode" "None"

# nvidia special options, use with care
  Option "CursorShadow" "1"
  Option "CursorShadowAlpha" "63"
  Option "CursorShadowYOffset" "2"
  Option "CursorShadowXOffset" "4"
  Option "FlatPanelProperties" "Scaling = native"
  Option "NoLogo" "true"
  Option "UseEDID" "true"
  Option "AddARGBGLXVisuals" "true"
  Option "RenderAccel" "true"
 #Option "AllowGLXWithComposite" "true"
EndSection

Section "Device"
  Identifier  "Card1"
  Driver "radeon"
  BoardName "unknown"

  Screen 1
 #Option "MonitorLayout" "crt,crt"
 #BusID  "PCI:1:0:0"
EndSection

Section "Screen"
  Identifier "Screen0"
  Device "Card0"
  Monitor "Monitor0"
  DefaultColorDepth 24
  
  SubSection "Display"
  Depth 8
  Modes "1680x1050"
  EndSubSection
  SubSection "Display"
  Depth 15
  Modes "1680x1050"
  EndSubSection
  SubSection "Display"
  Depth 16
  Modes "1680x1050"
  EndSubSection
  SubSection "Display"
  Depth 24
  Modes "1680x1050"
  EndSubSection
  SubSection "Display"
  Depth 32
  Modes "1680x1050"
  EndSubSection
  
  # Only the official NVIDIA driver supports twinview
  # these setting are an example
  Option "TwinView" "false"
  Option "SecondMonitorVendorName" "unknown"
  Option "SecondMonitorModelName" "unknown"
  Option "SecondMonitorHorizSync" "30-75"
  Option "SecondMonitorVertRefresh" "55-70"
 #Option "MetaModes" "1024x768, 1024x768"
  Option "TwinViewOrientation" "RightOf"
  Option "ConnectedMonitor" "dfp,dfp"
EndSection

Section "DRI"
  Mode 0666
EndSection

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

It gets me a little closer but not correct yet, this has a max display of 1600x1200 but still no 1680x1050. The card is an older ati x800 which uses the old ATI 9-3 driver, which can't be used in the newer xorg's, but like with antiX the open source driver is fine. glxgears runs fine. But I just cannot get my screen to displa its native res. Any help would be great.

Thanks

Last edited by voorhees1979 (2010-04-18 22:30:24)

Offline

#2 2010-04-18 15:39:02

browndwarf
Member
From: Virginia, USA
Registered: 2010-02-02
Posts: 7

Re: [SOLVED]Cannot get 1680x1050

Have you tried having HAL or udev (for X versions 1.7 and 1.8, respectively) auto-detect your hardware? Try running X without an xorg.conf and see how that goes.

It might be that this is a driver issue, however. What graphics card do you have?

lspci | grep VGA

Offline

#3 2010-04-18 15:59:34

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED]Cannot get 1680x1050

What does 'xrandr' show? Do you have all your drivers and -utils and xorg- stuff installed? Maybe you have them on your other distro, but you didn't install it on Arch and that's why you can't get the native resolution.

Edit:
@browndwarf
> What graphics card do you have?
Well, OP wrote that (s)he has an older ati x800.

Last edited by karol (2010-04-18 16:02:48)

Offline

#4 2010-04-18 16:30:40

voorhees1979
Member
Registered: 2010-04-18
Posts: 14

Re: [SOLVED]Cannot get 1680x1050

Hi

Thanks for the replies. I have Hal running. All set as a DAEMON as per the guide. I installed xf86-video-ati libgl at-dri all from the guide as well. Xorg is all installed. I am running in gnome very well its just the display. Even glxgears works so I have 3d effects.

[voorhees@myhost ~]$ lspci | grep VGA
01:00.0 VGA compatible controller: ATI Technologies Inc R420 JK [Radeon X800]
[voorhees@myhost ~]$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3     56.2  
   848x480        60.0  
   640x480        59.9     59.9

Now I had a little play with xrandr heres the ouput of what I did:

[voorhees@myhost ~]$ gtf 1680 1050 65

  # 1680x1050 @ 65.00 Hz (GTF) hsync: 70.85 kHz; pclk: 159.84 MHz
  Modeline "1680x1050_65.00"  159.84  1680 1784 1968 2256  1050 1051 1054 1090  -HSync +Vsync
[voorhees@myhost ~]$ xrandr --newmode "1680x1050_60.00"  147.14  1680 1784 1968 2256  1050 1051 1054 1087  -HSync +Vsync
[voorhees@myhost ~]$ xrandr --addmode VGA-0 "1680x1050_60.00"
[voorhees@myhost ~]$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3     56.2  
   848x480        60.0  
   640x480        59.9     59.9  
   1680x1050_60.00   59.9  
S-video disconnected (normal left inverted right x axis y axis)
DVI-0 disconnected (normal left inverted right x axis y axis)

Now here I think great all done, but not quite sad I load up gnome-display-properties, select the new 1680x1050 with 60hz screen display. The screen then goes into 1680x1050 but the screen is shaking like mad. My monitor has a setting to show me the hz when running, so I load back into antiX which is correct and the screen displays 65khz 59hz. Now when I change arch to 1680x1050 via xrandr and the screen shakes the monitor says 63khz 58hz. I dont know if this is the reason for the screen shake.

Last edited by voorhees1979 (2010-04-18 16:31:34)

Offline

#5 2010-04-18 18:00:56

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED]Cannot get 1680x1050

Did you try running w/o xorg.conf? Move the config file somewhere and reboot.

Just to be sure, please post the output of 'pacman -Qs ati' and 'pacman -Qs xorg'.

Edit: Maybe you should post to this thread -> http://bbs.archlinux.org/viewtopic.php?pid=742749 because I have only rudimentary knowledge of xorg ("works for me") and I don't want to send you on a wild goose chase - trying out everything from the wiki.

Last edited by karol (2010-04-18 18:12:52)

Offline

#6 2010-04-18 18:12:33

voorhees1979
Member
Registered: 2010-04-18
Posts: 14

Re: [SOLVED]Cannot get 1680x1050

Hi

Thanks again for trying to help me. Removing xorg.conf and then rebooting didnt help me. This is from xrandr again:

[voorhees@myhost ~]$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA-0 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   1024x768       60.0* 
   800x600        60.3     56.2  
   848x480        60.0  
   640x480        59.9     59.9

-Qs ati:

[voorhees@myhost ~]$ pacman -Qs ati
local/alsa-lib 1.0.22-1
    An alternative implementation of Linux sound support
local/alsa-oss 1.0.17-1
    OSS compatibility library
local/alsa-utils 1.0.22-2
    An alternative implementation of Linux sound support
local/ati-dri 7.7.1-1
    Mesa DRI drivers for AMD/ATI Radeon
local/brasero 2.30.0-1
    A disc burning application for Gnome
local/cdrkit 1.1.10-1
    Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction
local/clutter 1.2.4-1
    A GObject based library for creating fast, visually rich graphical user interfaces
local/coreutils 8.4-2 (base)
    The basic file, shell and text manipulation utilities of the GNU operating system
local/dasher 4.10.1-2 (gnome-extra)
    Information-efficient text-entry interface, driven by natural continuous pointing gestures
local/diffutils 2.9-1 (base)
    Utility programs used for creating patch files
local/docbook-xml 4.5-4
    A widely used XML scheme for writing documentation and help
local/evolution 2.30.0.1-1 (gnome-extra)
    Integrated Workgroup and Personal Information Management for Gnome
local/evolution-data-server 2.30.0-2
    Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop
local/file 5.04-2 (base)
    File type identification utility
local/gamin 0.1.10-1
    Gamin is a file and directory monitoring system defined to be a subset of the FAM (File Alteration
    Monitor) system.
local/gconf 2.28.1-1
    A configuration database system
local/gdm 2.30.0-1 (gnome-extra)
    Gnome Display Manager (a reimplementation of xdm)
local/gettext 0.17-3 (base)
    GNU internationalization library
local/gnome-disk-utility 2.30.1-1
    GNOME libraries and applications for dealing with storage devices
local/gnome-doc-utils 0.20.0-1
    Documentation utilities for Gnome
local/gnome-menus 2.30.0-1
    GNOME menu specifications
local/gnome-mime-data 2.18.0-4 (gnome)
    The base MIME and Application database for GNOME
local/gnome-system-tools 2.30.0-2
    Gnome System Configuration Utilities
local/gnome2-user-docs 2.30.0-1 (gnome)
    User documentation for GNOME2
local/guile 1.8.7-2
    Guile is a portable, embeddable Scheme implementation written in C
local/hal-info 0.20091130-1
    Hardware Abstraction Layer information files
local/hdparm 9.28-1
    A shell utility for manipulating Linux IDE drive/driver parameters
local/heimdal 1.3.2-1
    Implementation of Kerberos V5 libraries
local/icu 4.4-2
    International Components for Unicode library
local/imagemagick 6.6.0.10-1
    An image viewing/manipulation program
local/imlib2 1.4.2-6
    Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon
    support
local/initscripts 2010.01-1 (base)
    System initialization/bootup scripts
local/iputils 20100214-2 (base)
    IP Configuration Utilities (and Ping)
local/jasper 1.900.1-5
    A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard
local/libbonobo 2.24.3-1
    A set of language and system independant CORBA interfaces for creating reusable components
local/libcanberra 0.23-1
    A small and lightweight implementation of the XDG Sound Theme Specification
local/libcroco 0.6.2-1
    GNOME CSS2 parsing and manipulation toolkit
local/libdatrie 0.2.3-1
    Libdatrie is an implementation of double-array structure for representing trie, as proposed by Junichi
    Aoe.
local/libdvdread 4.1.3-1
    libdvdread provides a simple foundation for reading DVD video disks
local/libgail-gnome 1.20.2-1 (gnome)
    GNOME Accessibility Implementation Library for gnomeui and libbonoboui
local/libgdiplus 2.6.2-1
    An Open Source Implementation of the GDI+ API
local/libgksu 2.0.12-1
    gksu authorization library
local/libgtop 2.28.1-1
    A library that read information about processes and the running system
local/libgweather 2.30.0-1
    Provides access to weather information from the net
local/libical 0.44-1
    An open source reference implementation of the icalendar data type and serialization format
local/libidn 1.16-1
    Implementation of the Stringprep, Punycode and IDNA specifications
local/libnice 0.0.11-1
    An implementation of the IETF's draft ICE (for p2p UDP data streams)
local/libnl 1.1-1
    Library for applications dealing with netlink sockets
local/libnotify 0.4.5-1.1
    Desktop notification library
local/libproxy 0.2.3-1
    A library that provides automatic proxy configuration management
local/libsasl 2.1.23-2
    Cyrus Simple Authentication Service Layer (SASL) library
local/libtiff 3.9.2-2
    Library for manipulation of TIFF images
local/libunique 1.1.6-2
    Library for writing single instance applications
local/libusb 0.1.12-4 (base)
    Library to enable user space application programs to communicate with USB devices
local/libvisual 0.4.0-2
    Abstraction library that comes between applications and audio visualisation plugins
local/libxau 1.0.5-1
    X11 authorisation library
local/libxfont 1.4.1-1
    X11 font rasterisation library
local/libxkbfile 1.0.6-1
    X11 keyboard file manipulation library
local/libxslt 1.1.26-1
    XML stylesheet transformation library
local/logrotate 3.7.8-1 (base)
    Rotates system logs automatically
local/mcpp 2.7.2-2
    Matsui's CPP implementation precisely conformed to standards
local/mkinitcpio 0.6.3-1 (base)
    Modular initramfs image creation utility
local/mono 2.6.3-1
    Free implementation of the .NET platform including runtime and compiler
local/mono-addins 0.4-3
    a generic framework for creating extensible applications and for creating libraries which extend those
    applications
local/mozilla-common 1.4-1
    Common Initialization Profile for Mozilla.org products
local/mpfr 2.4.2-2
    Multiple-precision floating-point library
local/musicbrainz 2.1.5-3
    The second generation incarnation of the CD Index
local/ncurses 5.7-2 (base)
    System V Release 4.0 curses emulation library
local/ndesk-dbus 0.6.0-2
    C# implementation of D-Bus
local/ndesk-dbus-glib 0.4.1-2
    C# GLib implementation of D-Bus
local/net-tools 1.60-14 (base)
    Configuration tools for Linux networking
local/notification-daemon 0.4.0-4 (gnome)
    Notification daemon for the desktop notifications framework
local/pam 1.1.1-1 (base)
    PAM (Pluggable Authentication Modules) library
local/parted 2.2-1
    A program for creating, destroying, resizing, checking and copying partitions
local/pciutils 3.1.7-1 (base)
    PCI bus configuration space access library and tools
local/polkit 0.96-2
    Application development toolkit for controlling system-wide privileges
local/polkit-gnome 0.96-3
    PolicyKit integration for the GNOME desktop
local/procinfo 19-3 (base)
    Displays useful information from /proc
local/python-pysqlite 2.5.5-1
    A Python DB-API 2.0 interface for the SQLite embedded relational database engine
local/rarian 0.8.1-1
    Documentation meta-data library, designed as a replacement for Scrollkeeper.
local/seahorse 2.30.0-1 (gnome-extra)
    GNOME application for managing PGP keys.
local/sound-juicer 2.28.2-1 (gnome-extra)
    A cd ripper application
local/startup-notification 0.10-1
    Monitor and display application startup
local/syslog-ng 3.1.0-1 (base)
    Next-generation syslogd with advanced networking and filtering capabilities
local/t1lib 5.1.2-2
    Library for generating character- and string-glyphs from Adobe Type 1 fonts
local/texinfo 4.13a-3 (base)
    Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source
    file
local/tomboy 1.2.0-2 (gnome-extra)
    Desktop note-taking application for Linux and Unix
local/unixodbc 2.2.14-2
    ODBC is an open specification for providing application developers with a predictable API with which
    to access Data Sources
local/upower 0.9.2-2
    Abstraction for enumerating power devices, listening to device events and querying history and
    statistics
local/wpa_supplicant 0.6.10-2 (base)
    A utility providing key negotiation for WPA wireless networks
local/xf86-video-ati 6.12.192-1 (xorg-video-drivers)
    X.org ati video driver
local/xkeyboard-config 1.8-1
    X keyboard configuration files
local/xorg-apps 7.5-3
    Various X.Org applications
local/xorg-docs 1.5-1 (xorg)
    X.org documentations
local/xorg-xauth 1.0.4-1
    X.Org authorization settings program
local/xorg-xinit 1.2.1-1 (xorg)
    X.Org initialisation program

-Qs xorg:

[voorhees@myhost ~]$ pacman -Qs xorg
local/xf86-input-acecad 1.4.0-1 (xorg-input-drivers)
    X.Org acecad tablet input driver
local/xf86-input-aiptek 1.3.0-1 (xorg-input-drivers)
    X.Org Aiptek USB Digital Tablet input driver
local/xf86-input-elographics 1.2.3-3 (xorg-input-drivers)
    X.org Elographics TouchScreen input driver
local/xf86-input-evdev 2.3.2-1 (xorg-input-drivers)
    X.org evdev input driver
local/xf86-input-fpit 1.3.0-3 (xorg-input-drivers)
    X.Org Fujitsu Stylistic Tablet PC input driver
local/xf86-input-hyperpen 1.3.0-3 (xorg-input-drivers)
    X.Org HyperPen Tablet input driver
local/xf86-input-joystick 1.5.0-1 (xorg-input-drivers)
    X.Org Joystick input driver
local/xf86-input-keyboard 1.4.0-1 (xorg-input-drivers)
    X.Org keyboard input driver
local/xf86-input-mouse 1.5.0-1 (xorg-input-drivers)
    X.org mouse input driver
local/xf86-input-mutouch 1.2.1-4 (xorg-input-drivers)
    X.org mutouch input driver
local/xf86-input-penmount 1.4.1-1 (xorg-input-drivers)
    X.org penmount input driver
local/xf86-input-synaptics 1.2.1-1 (xorg-input-drivers)
    synaptics driver for notebook touchpads
local/xf86-input-vmmouse 12.6.5-3 (xorg-input-drivers)
    X.org VMWare Mouse input driver
local/xf86-input-void 1.3.0-1 (xorg-input-drivers)
    X.org void input driver
local/xf86-video-ati 6.12.192-1 (xorg-video-drivers)
    X.org ati video driver
local/xf86-video-vesa 2.3.0-1 (xorg xorg-video-drivers)
    X.org vesa video driver
local/xorg-apps 7.5-3
    Various X.Org applications
local/xorg-docs 1.5-1 (xorg)
    X.org documentations
local/xorg-font-utils 7.5-2
    X.Org font utilities
local/xorg-fonts-100dpi 1.0.1-3 (xorg)
    X.org 100dpi fonts
local/xorg-fonts-75dpi 1.0.1-3 (xorg)
    X.org 75dpi fonts
local/xorg-fonts-alias 1.0.2-1
    X.org font alias files
local/xorg-fonts-encodings 1.0.3-1
    X.org font encoding files
local/xorg-fonts-misc 1.0.1-1
    X.org misc fonts
local/xorg-res-utils 1.0.3-3 (xorg)
    X.Org X11 resource utilities
local/xorg-server 1.7.6-3 (xorg)
    X.Org X servers
local/xorg-server-utils 7.5-3 (xorg)
    X.Org utilities required by xorg-server
local/xorg-twm 1.0.4-3 (xorg)
    Tab Window Manager for the X Window System
local/xorg-utils 7.6-1 (xorg)
    Collection of client utilities used to query the X server
local/xorg-xauth 1.0.4-1
    X.Org authorization settings program
local/xorg-xinit 1.2.1-1 (xorg)
    X.Org initialisation program
local/xorg-xkb-utils 7.5-2
    X.org keyboard utilities
local/xterm 256-1 (xorg)
    X Terminal Emulator

Thanks again for any help

Offline

#7 2010-04-18 18:35:33

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED]Cannot get 1680x1050

Do you have an up-to-date system? 'pacman -Syyu'

Maybe you should post to this thread -> http://bbs.archlinux.org/viewtopic.php?pid=742749  because I have only rudimentary knowledge of xorg ("works for me") and I don't want to send you on a wild goose chase - trying out everything from the wiki.

There are so many things: is it GNOME or ATI problem, do you have KMS enabled etc. I think it will be much faster if you talk to someone who knows something about ATI.

Offline

#8 2010-04-18 20:49:36

voorhees1979
Member
Registered: 2010-04-18
Posts: 14

Re: [SOLVED]Cannot get 1680x1050

Anyone else have any ideas please? This stupid display problem is the only thing stopping me moving to arch now.

Offline

#9 2010-04-18 21:30:29

voorhees1979
Member
Registered: 2010-04-18
Posts: 14

Re: [SOLVED]Cannot get 1680x1050

I have got a little further if I add this to xorg.conf to disable hal:

Section "ServerFlags"
    Option "AutoAddDevices" "False"
EndSection

I get to GDM login with 1680x1050 yay, but then I have no mouse or keyboard. Any help would be great.

Thanks

EDIT: well i put a # in front of those lines in xorg so I could boot back in and look at keyboard/mouse and it booted stright into GDM then the desktop in full 1680x1050, why would disabling hal then booting, then rebooting with it on fix this weird issue? Anyway I have just done a complete back up with screen res fully working.

Last edited by voorhees1979 (2010-04-18 21:40:18)

Offline

#10 2010-04-18 21:44:07

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED]Cannot get 1680x1050

> I have no mouse or keyboard
Try this

Section "ServerFlags"
        Option "AllowEmptyInput" "no"
EndSection

Edit:
> Anyway I have just done a complete back up with screen res fully working.
Thats good to hear, because I haven't got a clue why your res wouldn't work and chasing obscure bugs is not what I like doing :-)

Last edited by karol (2010-04-18 21:46:04)

Offline

#11 2010-04-19 00:35:03

Misfit138
Misfit Emeritus
From: USA
Registered: 2006-11-27
Posts: 4,189

Re: [SOLVED]Cannot get 1680x1050

In my experience, specifying DefaultDepth under Section "Screen" often solves these resolution issues.

Offline

Board footer

Powered by FluxBB