LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 02-14-2005, 08:35 PM   #1
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Rep: Reputation: 15
Resolution


I have configured xorg.conf so that my default depth is 24 and under the 24 bit modes I have inserted "1280x800", but when I restart my computer 1024x768 is the highest res. I can get!
What am I doing wrong?
 
Old 02-14-2005, 08:44 PM   #2
Okie
Senior Member
 
Registered: Mar 2002
Location: Oklahoma
Posts: 1,154

Rep: Reputation: 187Reputation: 187
Re: Resolution

Quote:
Originally posted by Ab3n
I have configured xorg.conf so that my default depth is 24 and under the 24 bit modes I have inserted "1280x800", but when I restart my computer 1024x768 is the highest res. I can get!
What am I doing wrong?
trying to go to a higher resolution than your monitor can handle???

not an insult, just a guess, xorg could be protecting your monitor from exploding, try a lower depth like 16 then you might be able to get 1280X800 just another half educated guess...
 
Old 02-14-2005, 08:51 PM   #3
killerbob
Member
 
Registered: Oct 2004
Location: Ottawa, ON
Distribution: Slackware
Posts: 662

Rep: Reputation: 31
1280x800 is also a bit of a weird resolution... usually, it's 1280x1024 or 1280x960. Are you sure your monitor supports that resolution in the first place?


BTW, it does sound like your colour depth is the problem. Take a look at your xorg.conf and change the default colour depth to 16 instead of 24, see if that works.
good luck.
 
Old 02-14-2005, 08:52 PM   #4
jimdaworm
Member
 
Registered: Aug 2003
Location: Spain
Distribution: Ubuntu
Posts: 897

Rep: Reputation: 30
Show us your xorg.conf a fool proof way of fixing the problem assuming you donīt need to switch resolutions could be to only put "1280x800" in your 24 bit mode line.

****That always happens... 3 people answering at the same time*****

Last edited by jimdaworm; 02-14-2005 at 08:53 PM.
 
Old 02-14-2005, 09:07 PM   #5
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Original Poster
Rep: Reputation: 15
Code:
# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen 1"
    Device      "VESA Framebuffer"
    Monitor     "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

#   DefaultDepth 8
   DefaultDepth 16
#   DefaultDepth 24
#   DefaultDepth 32

# "1024x768" is also a conservative usable default resolution.  If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

    Subsection "Display"
        Depth       8
        Modes "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes  "1280x800" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes  "1280x800" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes "1024x768" "800x600" "640x480"
    EndSubsection

EndSection
I changed it to 16 and It still didnt work. I have a widescreen lcd on my laptop, thats the reason for the odd resolution.
 
Old 02-14-2005, 09:20 PM   #6
killerbob
Member
 
Registered: Oct 2004
Location: Ottawa, ON
Distribution: Slackware
Posts: 662

Rep: Reputation: 31
You're using VESA as your display driver. That doesn't support a resolution higher than 1024x768.
 
Old 02-14-2005, 09:24 PM   #7
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Original Poster
Rep: Reputation: 15
I have a radeon mobility 9000 igp and they don't seem to make linux drivers for this card...what should I do?
 
Old 02-14-2005, 09:28 PM   #8
jimdaworm
Member
 
Registered: Aug 2003
Location: Spain
Distribution: Ubuntu
Posts: 897

Rep: Reputation: 30
The easiest thing thing might be to download and install the drivers from ATI ... this says its compatable
Quote:
http://www2.ati.com/drivers/linux/linux_8.8.25.html
 
Old 02-14-2005, 09:39 PM   #9
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Original Poster
Rep: Reputation: 15
Sorry, Im a newb but how do I install fglrx_6_8_0-8.8.25-1.i386.rpm? I tried kpackage but it gave me a bunch of dependancy errors.
 
Old 02-14-2005, 09:41 PM   #10
killerbob
Member
 
Registered: Oct 2004
Location: Ottawa, ON
Distribution: Slackware
Posts: 662

Rep: Reputation: 31
If you go to http://www.ati.com/ and click on Software & Drivers, you'll find the right driver. Choose Linux x86 for the operating system, Graphics Driver for the software, and scroll down on the right to RADEON 9000 series. Mobility 9000 IGP is included in the 9000 series.




edit: You got that far already.... To install the RPM, first run rpm2tgz on it. That'll convert the file to a Slackware package, so it can be easily removed with pkgtool, and so you don't run into dependency failures with RPM.

Then, use installpkg on the file you've just created. You need to be root for that. Go to /etc/X11, make a backup of your xorg.conf, and run fglrxconfig. It'll create the xorg.conf file, but it'll be named for XF86-4. Just rename the file to xorg.conf and you're good to go.

Last edited by killerbob; 02-14-2005 at 09:44 PM.
 
Old 02-14-2005, 09:44 PM   #11
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Original Poster
Rep: Reputation: 15
I think im doing something wrong, because the fglrxconfig command isn't found...

Last edited by Ab3n; 02-14-2005 at 09:53 PM.
 
Old 02-14-2005, 10:39 PM   #12
Ab3n
Member
 
Registered: Sep 2004
Location: Colorado, USA
Distribution: CentOS 5
Posts: 144

Original Poster
Rep: Reputation: 15
When I used installpkg it just said:

Installing package fglrx_6_8_0-8.8.25-1.i386...
PACKAGE DESCRIPTION:


and that was it, is that normal?
 
Old 02-15-2005, 01:12 AM   #13
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Could you try adding a ModeLine for that resolution?

use the 'gtf' program to generate one.
gtf 1280 800 60 -x

Do you have a laptop with a wide screen lcd display?
You could also google for "1280x800" and your computer model or your graphics card. You may end up with a sample XF86config file.
 
Old 02-15-2005, 09:58 AM   #14
egag
Senior Member
 
Registered: Jul 2004
Location: Netherlands
Distribution: Slackware
Posts: 2,721

Rep: Reputation: 53
i think you can use the radeon driver.
look here for details :

http://lists.debian.org/debian-lapto.../msg00157.html

egag
 
Old 02-15-2005, 10:48 AM   #15
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
A few points:

1. Try out the open source "ati" driver if you find installing Ati's official drivers a bit scary. I've never used Ati's official drivers, and I'm happy with the open source driver (Radeon 7200, Radeon 7000, Rage128).

2. The generic "vesa" driver DOES support resolutions above 1024x768. Before I figured out to change the driver, I used Knoppix's default install of "vesa" with my Radeon 7200. I had configured my own custom interlaced 1280x960 modeline (for my HDTV), and the vesa driver supported it perfectly. It even supported the hardware overlay for smooth video playback! There was no support for OpenGL 3d accelerated graphics, though.

3. Here's my favorite modeline generator; it's an interactive web site: Colas XFree Modeline Generator

Unfortunately, you may need to know the required refresh rate in addition to the resolution. Assuming a refresh rate of 60hz, Colas Modeline Generator gives:

ModeLine "1280x800" 87.09 1280 1336 1616 1728 800 802 814 840 #60Hz

You'll want to insert this modeline in the section for "My Monitor" (which you didn't quote). Also, in your "My Monitor" section, there will be some numbers representing ranges for the horizontal and vertical sync rates--increase those maximums to ensure your high resolution modelines won't be ignored.

Also, in your Screen section remove all resolutions except for 1280x800. It will look something like:
Code:
    Subsection "Display"
        Depth       8
        Modes  "1280x800"
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes  "1280x800"
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes  "1280x800"
    EndSubsection
    Subsection "Display"
        Depth       32
        Modes  "1280x800"
    EndSubsection
4. Finally, are you using GNOME or KDE? KDE will meekly accept that 1280x800 is the only available resolution, but GNOME will thickheadedly force whatever resolution it was last set to. Other window managers will simply run with whatever resolution is handed to them.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
default screen resolution smaller than max. resolution ?? Thoddy Linux - General 2 11-10-2005 01:33 AM
X: using larger resolution for games than default desktop resolution Jamo Linux - Games 2 04-10-2005 03:16 AM
Text Resolution, Graphic resolution. Change from prompt dlublink SUSE / openSUSE 2 01-28-2005 11:50 AM
[resolution 1600 x 1200] Virtual resolution - help! MaicoMedia Linux - Hardware 2 10-15-2004 03:15 AM
seeking a resolution to my resolution troubles! kinbote Linux - General 3 05-11-2004 03:18 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:39 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration