LinuxQuestions.org
Visit Jeremy's Blog.
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 03-02-2007, 11:37 PM   #1
linux_2007_
Member
 
Registered: Feb 2007
Posts: 80

Rep: Reputation: 15
Screen Mode Problem


I have recently faced with 2 problems with my linux system:

1. Any time that I boot this PC, it gives me this message:
No Optimum Mode, Recommended Mode: 1440X900 60Hz, ? .

The monitor is Samsung SyncMaster 940BW (wide-screen 1440X900). How can I get rid of it?


2. When I try to logon as administrator, it goes to YaST, and when I close it, it goes back to the Usename/Password page. Any idea?

Thank you.
 
Old 03-03-2007, 05:03 PM   #2
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
1. The message comes from your monitor - which obviously is a LCD. LCD monitors have fixed resolution, using any other resolution lowers the picture quality, thus the message.
2. You do not reveal what distro you are using. Looks like sensible behavior though. Full rights for management, user rights for using the computer.
 
Old 03-03-2007, 05:16 PM   #3
Quakeboy02
Senior Member
 
Registered: Nov 2006
Distribution: Debian Linux 11 (Bullseye)
Posts: 3,407

Rep: Reputation: 141Reputation: 141
Wouldn't it go away if he added "1440x900" to his xorg.conf modes lines? Or is the message before X starts up?
 
Old 03-03-2007, 05:20 PM   #4
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
The message probably comes before X starts. For sake of picture quality Xorg should be set to 1440x900 indeed.

Edit: There may be a way to disable it in monitor setup, read the manual.

Last edited by Emerson; 03-03-2007 at 05:21 PM.
 
Old 03-03-2007, 08:59 PM   #5
linux_2007_
Member
 
Registered: Feb 2007
Posts: 80

Original Poster
Rep: Reputation: 15
Here is what I found in the manual:
----------
1. Press Enter at the first and the second screen after executing the X86Config file.
2. The third screen is for setting your mouse.
3. Set a mouse for your computer.
4. The next screen is for selecting a keyboard.
5. Set a Keyboard for your computer.
6. The next screen is for setting your monitor.
7. First of all, set a horizontal frequency for your monitor. (You can enter the frequency directly.)
8. Set a vertical frequency for your monitor. (You can enter the frequency directly.)
9. Enter the model name of your monitor. This information will not affect the actual execution of X-Window.
10. You have finished setting up your monitor.
Execute X-Window after setting other requested hardware.
----------

I don't know what the X86Config file is, and where it is. And, how to execute it?

Also, I don't know how to execute X-Window after setting other requested hardware.

Any idea please?
 
Old 03-03-2007, 09:19 PM   #6
linux_2007_
Member
 
Registered: Feb 2007
Posts: 80

Original Poster
Rep: Reputation: 15
I forgot to say that I do have a XF86Config (not X86Config) in /etc/X11. In this file, I have added "1440x960" for the default depth (24):


Section "Screen"
Identifier "Screen[0]"
Device "Device[0]"
Monitor "Monitor[0]"
DefaultDepth 24
Option "usevnc" "no"
SubSection "Display"
Depth 15
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1024x768" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1024x768" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1440x960" "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1024x768" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 32
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1024x768" "800x600" "768x576" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1280x960" "1280x800" "1152x864" "1280x768" "1024x768" "800x600" "768x576" "640x480"
EndSubSection


No success. And all my questions still exist (how to execute, ...).

.
 
Old 03-03-2007, 09:20 PM   #7
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
What exactly are you trying to do now? To get rid of that message or to set the resolution? In first case you should read the monitor's manual and it has nothing to do with Linux. In latter case you have to edit your /etc/X11/xorg.conf, comment out all other modelines and add this one:

Modeline "1440x900@60" 108.84 1440 1472 1880 1912 900 918 927 946

Maybe there is some utility to set it up, we still do not know what distro you have.
 
Old 03-03-2007, 11:52 PM   #8
linux_2007_
Member
 
Registered: Feb 2007
Posts: 80

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by Emerson
What exactly are you trying to do now? To get rid of that message or to set the resolution? In first case you should read the monitor's manual and it has nothing to do with Linux. In latter case you have to edit your /etc/X11/xorg.conf, comment out all other modelines and add this one:

Modeline "1440x900@60" 108.84 1440 1472 1880 1912 900 918 927 946

Maybe there is some utility to set it up, we still do not know what distro you have.

I use Linux SuSE.

I want to fix both of them. What I copied and pasted before from the manual was all the inforamtion given in the manual regarding installing the monitor driver in Linux. So, I still need to know how to execute X86Config in order to get the desirable aspect ratio - the monitor is widescreen and as such at the moment all the circular icons look like elliptical - and I need to correct this. The monitor comes with a installation CD but it is just for Windows (at least that's my understanding).

Could you give me some tips please?
 
Old 03-04-2007, 06:06 AM   #9
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
To execute the setup script you need to open a terminal window and become root. Then just type it in and press Enter.
However, your desired mode may not exist among the choices. In this case I'd recommend editing XF86Config directly. The monitor section should look like this (replace obvious placeholders):
Code:
Section "Monitor"
        DisplaySize      x   y     # mm
        Identifier   "Monitor0"
        VendorName   "Yourbrand"
        ModelName    "Yourmodel"
        Modeline "1440x900@60" 108.84 1440 1472 1880 1912 900 918 927 946
        Option      "DPMS"
EndSection
And screen like this:
Code:
Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth    24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes   "1440x900"
        EndSubSection
EndSection
Please note, I recommend omitting all modes you do not intend to use. Hope the above will work, I did not test it.
 
Old 03-04-2007, 09:04 PM   #10
linux_2007_
Member
 
Registered: Feb 2007
Posts: 80

Original Poster
Rep: Reputation: 15
No, it didn't work, and I still have problem with this SAMSUNG-SM940BW monitor. Still, circular shapes are elliptical...I do not understand what is wrong here.

By the way, any time I edit the XF86Config file, should I reboot th computer, or there is another way?
 
Old 03-05-2007, 03:57 AM   #11
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
See /var/log for errors in X server log, mine is /var/log/Xorg.0.log.
It is possible your desktop setting overrides video mode, see what modes are listed in KDE control center. (I'm assuming SUSE uses KDE?)
You need to restart X server to validate new configuration file. Ctrl+Alt+Backspace should do it.
 
  


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
Screen Mode Problem linux_2007_ Linux - Hardware 1 03-02-2007 01:54 AM
Incorrect Screen Mode kwosource Linux - Hardware 4 03-07-2005 01:25 AM
Cannot change screen mode codec Slackware 3 05-15-2004 02:06 PM
screen mode help norkers Linux - Newbie 1 02-23-2002 09:41 PM

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

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