Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
05-20-2004, 04:35 AM
|
#1
|
|
Member
Registered: Feb 2004
Location: Australia
Distribution: Slackware 9.1
Posts: 34
Rep:
|
Screen Resolutions
Well I'm running slackware-current atm on this box but i installed Peanut Distro on a spare box last night and it set up my screen resolution at 1400x1150 which looked awesome and that was the default setting with some crappy hardware and drivers.
BUT in slackware the most i can get is 1280x1040 :|, i have the newest NVIDIA drivers 5336 but i can not get the resolution any higher then what it is? I have messed with XF86Config for hours with no result, any one know of a fix or is it a locked resolution?
|
|
|
|
05-20-2004, 04:39 AM
|
#2
|
|
Moderator
Registered: Nov 2002
Location: Kent, England
Distribution: Lubuntu
Posts: 19,088
|
Can you post the relevant sections of your xf86config file? (use the code tags to let it keep all formatting). We will better be able to advise if we can see that.
|
|
|
|
05-20-2004, 04:45 AM
|
#3
|
|
Member
Registered: Feb 2004
Location: Australia
Distribution: Slackware 9.1
Posts: 34
Original Poster
Rep:
|
No Probs
Code:
# **********************************************************************
# Monitor section
# **********************************************************************
# Any number of monitor sections may be present
Section "Monitor"
Identifier "My Monitor"
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
HorizSync 31.5 - 64.3
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
VertRefresh 50-100
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
# Any number of graphics device sections may be present
# Standard VGA Device:
Section "Device"
Identifier "Standard VGA"
VendorName "Unknown"
BoardName "Unknown"
# The chipset line is optional in most cases. It can be used to override
# the driver's chipset detection, and should not normally be specified.
# Chipset "generic"
# The Driver line must be present. When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module. Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.
Driver "nvidia"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for. When this line isn't present, a device
# section can only match up with the primary video device. For PCI
# devices a line like the following could be used. This line should not
# normally be included unless there is more than one video device
# intalled.
# BusID "PCI:0:10:0"
# VideoRam 256
# Clocks 25.2 28.3
EndSection
# Device configured by xf86config:
Section "Device"
Identifier "** NVIDIA (generic) [nv]"
Driver "nvidia"
VideoRam 131072
Option "NvAgp" "1"
Option "NoLogo" "on"
# Insert Clocks lines here if appropriate
EndSection
# **********************************************************************
# 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 "** NVIDIA (generic) [nv]"
Monitor "My Monitor"
DefaultDepth 24
Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1400x1050" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1400x1050" "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
As you can see i have the line 1400x1150 but it doesnt get recognized
|
|
|
|
05-20-2004, 04:56 AM
|
#4
|
|
Senior Member
Registered: May 2003
Location: Malaysia
Distribution: Slackware, LFS, CentOS
Posts: 1,307
Rep:
|
You entered 1400x1050 in your config.
|
|
|
|
05-20-2004, 05:03 AM
|
#5
|
|
Member
Registered: Feb 2004
Location: Australia
Distribution: Slackware 9.1
Posts: 34
Original Poster
Rep:
|
Quote:
Originally posted by Azmeen
You entered 1400x1050 in your config.
|
Yes i did but it did nothing?
|
|
|
|
05-20-2004, 06:42 AM
|
#6
|
|
Moderator
Registered: Nov 2002
Location: Kent, England
Distribution: Lubuntu
Posts: 19,088
|
At the moment, your pc appears to be using the generic Nvidia driver. Although it works fine it is a bit limited. It may be that it can't handle that size resoluton. I'd suggest getting the current drivers from www.nvidia.com (ensure you have installed your kernel sources) and see if getting the correct drivers will fix it.
Please note: there is a little bit of configuring to do with the Nvidia drivers, make sure you either print off the instructions or makes notes of the relevant sections, that is, the bits that apply to xf86config changes.
|
|
|
|
05-20-2004, 06:47 AM
|
#7
|
|
Member
Registered: Feb 2004
Location: Atlanta, GA USA
Distribution: Mandrake 10.1CE(desktop) Slackware 10.0 (Laptop)
Posts: 230
Rep:
|
------------------------------------------------------------------------------
HorizSync 31.5 - 64.3
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
---------------------------------------------------------------------------------
Your current HorizSync settings will not allow anything over 1280x1024.
Change your HorizSync rate to
HorizSync 31.5-86
then add the resolution you like and it will be listed in kcontrol the next time you start x.
Last edited by Frank_Drebin; 05-20-2004 at 06:49 AM.
|
|
|
|
05-20-2004, 08:01 AM
|
#8
|
|
Member
Registered: Feb 2004
Location: Australia
Distribution: Slackware 9.1
Posts: 34
Original Poster
Rep:
|
Thanks ppl but i figured it out
If anyone else has the same probs which alot will , if you use the 5336 drivers , it limits the resolution to what the monitor can handle but there is a way around it
Under the "Monitor" section in XF86Config put
Option "IgnoreEDID"
and thats it it will over ride the resolutions that your monitor tells the Graphics card it can use and up the Vert and Horz Frequency too while ya there .
Thanks for ya help
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:01 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|