LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 01-26-2003, 06:12 PM   #1
fatter
LQ Newbie
 
Registered: Jan 2003
Location: Bergen, Norway
Distribution: Mandrake 9.1
Posts: 7

Rep: Reputation: 0
Help. Can't adjust screen resolution or TwinView


Newbie-question I guess...

I'm running RedHat 8.0 (Psyche)

Two problems:

1. How can I adjust the screen resolution using the nvidia-drivers?
2. How do I enable dual(twin)-view to get an extended desktop using a GF4 ti4600 with two monitors hooked up?

Ok, I've tried several things in my XF86Config without any results.
The drivers are installed and works fine I think, the Nvidia-logo flashes when I start Gnome, but I'm stuck with 1024x768! In the display setting screen that's the only resolution I can choose. (Also the "enable 3d acceleration" option is greyed out). I would really like 1280x1024 but no matter what I write in XF86Config, the resolution stays the same.

Hope someone can help a Linux-Idiot.
Regards Joakim



Here's my XF86Config:


# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "DevInputMice" "AlwaysCore"
EndSection

Section "Files"
# RgbPath is the location of the RGB database. Note, this is the name of the
# file minus the extension (like ".txt" or ".db"). There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
EndSection

Section "InputDevice"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
# Option "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# Or if you just want both to be control, use:
# Option "XkbOptions" "ctrl:nocaps"
#
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbRules" "xfree86"
Option "XkbModel" "pc102"
Option "XkbLayout" "no"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

Section "InputDevice"
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier "DevInputMice"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "LG 1505S"
DisplaySize 280 210
HorizSync 48.0 - 48.0
VertRefresh 60.0 - 60.0
ModeLine "1400x1050" 129.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync +vsync
ModeLine "1400x1050" 151.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync +vsync
ModeLine "1400x1050" 162.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync +vsync
ModeLine "1400x1050" 184.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync +vsync
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "NVIDIA Asus GeForce 4 Ti4600"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24



SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection
 
Old 01-26-2003, 07:24 PM   #2
bulliver
Senior Member
 
Registered: Nov 2002
Location: Edmonton AB, Canada
Distribution: Gentoo x86_64; Gentoo PPC; FreeBSD; OS X 10.9.4
Posts: 3,760
Blog Entries: 4

Rep: Reputation: 78
Have you tried [ctrl] + [alt] + [+]? That is how you cycle through available resolutions. The 'display'section of XF86Config looks good: but 1280x1024 should be your default res the way you have it set up.

I would doublecheck your HorizSync, and VertRefresh figures though. Usually they are a range. If you don't know the correct range then search for your monitor model at the manufacture's website and plug in the correct values. If these are the correct figures then I don't think your monitor can support the larger resolution (at least not in 24 bit colour mode).

Be sure to back the present file up before making changes.

Last edited by bulliver; 01-26-2003 at 07:28 PM.
 
Old 01-26-2003, 07:39 PM   #3
fatter
LQ Newbie
 
Registered: Jan 2003
Location: Bergen, Norway
Distribution: Mandrake 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
The CtrlAlt-/+ only leaves me in a lower resolution...

Thanks, good idea. I'll check up on the specs of the monitor.
I just used the default values, probably not a good idea. In XP I'm using 1280@80Hz so it should be capable.
I'll leave a post if it works.

Last edited by fatter; 01-26-2003 at 07:40 PM.
 
Old 01-26-2003, 08:13 PM   #4
fatter
LQ Newbie
 
Registered: Jan 2003
Location: Bergen, Norway
Distribution: Mandrake 9.1
Posts: 7

Original Poster
Rep: Reputation: 0
Yes! Looking at my 1280x1024 desktop.

Thanks for the tip!!! Specifying the HorizSync and VertRefresh did the trick.

Now I only have to get both monitors to work in TwinView mode and I'm all over the moon.
 
Old 01-26-2003, 08:15 PM   #5
bulliver
Senior Member
 
Registered: Nov 2002
Location: Edmonton AB, Canada
Distribution: Gentoo x86_64; Gentoo PPC; FreeBSD; OS X 10.9.4
Posts: 3,760
Blog Entries: 4

Rep: Reputation: 78
Can't help you there...sorry.

Have a search for "two monitors" or "dual head", you might get lucky...
 
  


Reply



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 On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to adjust the screen resolution? magamandrake Linux - Hardware 4 09-14-2005 11:03 AM
adjust screen resolution BDemers Linux - Newbie 5 08-18-2005 04:50 AM
Adjust Display Resolution & Other ?'s ArchiMark Amigo 26 11-16-2004 03:02 AM
howto adjust user screen resolution patpat Linux - Newbie 3 06-23-2003 06:42 AM
How do I adjust screen resolution is Redhat 7.3? glitch Linux - Newbie 6 08-31-2002 09:50 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 03:24 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