LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 11-08-2009, 05:04 AM   #1
blastradius
Member
 
Registered: Oct 2004
Location: Cheshire, England
Distribution: Ubuntu Jaunty 9.04
Posts: 250

Rep: Reputation: 30
Input signal out of range settings help


Just installed Debian for the first time, it lookkks fine but when I hit the login screen I get:-

Input signal out of range
change to 1440 x 900 -60hz

This box does not go away and the monitor goes to sleep after a couple of minutes (I've had to switch it off and on a few times just to type this). When I go to screen resolution settings I am given NO options to select.

Please help!
 
Old 11-08-2009, 05:24 AM   #2
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
Have you a way to edit xorg.conf?
 
Old 11-08-2009, 05:41 AM   #3
blastradius
Member
 
Registered: Oct 2004
Location: Cheshire, England
Distribution: Ubuntu Jaunty 9.04
Posts: 250

Original Poster
Rep: Reputation: 30
Thanks for your quick reply, I'm going to Debian from Ubuntu as the new Ubuntu 9.10 just blitzed my display.

I can get to xorg.conf through the Terminal, is it something like:-

/etc/xorg.conf? I think there is another step in the middle but I can't remember what it is. What do I need to do?

Actually I've just tried the terminal and it won't let me run as sudo, just says the password is incorrect when I know it's right, after all I only set it this morning!

Last edited by blastradius; 11-08-2009 at 06:31 AM.
 
Old 11-08-2009, 07:31 AM   #4
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
Probably /etc/X11/xorg.conf. Can you dump its content? Maybe something wrong here. And what's your video hardware?
 
Old 11-08-2009, 09:11 AM   #5
radiodee1
Member
 
Registered: Oct 2006
Location: New York
Distribution: Debian
Posts: 628
Blog Entries: 11

Rep: Reputation: 34
you should not use 'sudo', instead use 'su'. You type 'su' and then your root password, then everything you type after that is treated as the root user. This is a debian thing. You're doing it the ubuntu way.
 
Old 11-08-2009, 12:55 PM   #6
blastradius
Member
 
Registered: Oct 2004
Location: Cheshire, England
Distribution: Ubuntu Jaunty 9.04
Posts: 250

Original Poster
Rep: Reputation: 30
I'm using an Nvidia card, how do I find out which one?

the computer is only a couple of months old so it must be a new card.

Here's the xorg although I still can't get the command right to edit as root, if I type this, su root gedit /etc/X11/xorg.conf I get 'cannot execute binary file'


#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection

Section "Device"
Identifier "Configured Video Device"
EndSection

Section "Monitor"
Identifier "Configured Monitor"
EndSection

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
EndSection:-

Last edited by blastradius; 11-08-2009 at 12:59 PM.
 
Old 11-08-2009, 01:26 PM   #7
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
I don't know debian much but your x window config file seems quite empty (no settings at all if I'm right.) Maybe you should check out manpages for dexconf and dpkg-reconfigure for the xorg packages. As for the nvidia card, it's probably not the problem because I think it's fully supported by linux.
 
Old 11-08-2009, 02:04 PM   #8
radiodee1
Member
 
Registered: Oct 2006
Location: New York
Distribution: Debian
Posts: 628
Blog Entries: 11

Rep: Reputation: 34
Quote:
Originally Posted by blastradius View Post
if I type this, su root gedit /etc/X11/xorg.conf I get 'cannot execute binary file'
in that case you should type the following:
Code:
gksu gedit /etc/X11/xorg.conf
'su' works by converting your terminal to a root terminal. You don't type it on the same line as the command that you are trying to execute. First you type 'su' and then press return. Then you type your password, and press return. Then the prompt changes and you are acting as the root user. You could type something like 'gedit' then and it would have root permissions. Then when you're done typing commands as the root user, you type 'exit' and then return. Then you're back to your original user again.

Like I said though, you might just want to type 'gksu gedit /etc/X11/xorg.conf'
 
Old 11-08-2009, 02:17 PM   #9
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
BTW gedit won't work without x so you'd better use nano or another one in text mode that you know...
 
Old 11-08-2009, 02:59 PM   #10
radiodee1
Member
 
Registered: Oct 2006
Location: New York
Distribution: Debian
Posts: 628
Blog Entries: 11

Rep: Reputation: 34
Quote:
Originally Posted by manu-tm View Post
BTW gedit won't work without x so you'd better use nano or another one in text mode that you know...
That's totally right. my apologies.
 
Old 11-08-2009, 03:29 PM   #11
the trooper
Senior Member
 
Registered: Jun 2006
Location: England
Distribution: Debian Testing/Unstable Amd64
Posts: 1,456

Rep: Reputation: Disabled
Quote:
I'm using an Nvidia card, how do I find out which one?
You can check which card you are using with:

Code:
lspci | grep VGA
 
Old 11-08-2009, 04:49 PM   #12
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
It seems that with recent versions of x, xorg.conf is not necessary because x relies on hal to detect hardware.
 
Old 11-09-2009, 09:29 AM   #13
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 94

Rep: Reputation: 17
Please let us know if you solved the problem (and how)...
 
Old 11-09-2009, 09:45 AM   #14
Vrajgh
Member
 
Registered: Aug 2005
Posts: 61

Rep: Reputation: 20
Whenever I've had "out of range" problems with displays I have solved them by looking up the monitor specification for suitable values of "HorizSync" and "VertRefresh" to put in the Monitor section of xorg.conf. And by restricting "modes" in the "Display" subsection of "Screen" to only use resolutions of interest.
 
Old 11-09-2009, 03:06 PM   #15
blastradius
Member
 
Registered: Oct 2004
Location: Cheshire, England
Distribution: Ubuntu Jaunty 9.04
Posts: 250

Original Poster
Rep: Reputation: 30
Sorry guys, I needed a working system so I went back to Ubuntu Jaunty, I'm just not going to upgrade to Karmic as that is where my problems started. I am going to put Debian back on a small partition so I can spend time trying to sort it out as the old-timer in me always wanted to run Debian but never did.

Thanks for your help, I learned stuff even if I didn't get to fix my problem.
 
  


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
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Input Signal Out of Range Jongi Linux - General 6 05-18-2008 08:43 AM
"Input signal out of range" where are the KDE settings stored? whoisdon Linux - Software 1 10-18-2006 01:44 AM
input signal out of range - fpd1730 help! ryedawg Linux - Software 0 12-09-2005 10:15 PM
input signal out of range taoweijia Linux - General 1 06-04-2004 04:14 AM
input signal out of range tadspurgeon Linux - Software 4 01-30-2004 12:50 PM


All times are GMT -5. The time now is 11:23 AM.

Main Menu
 
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
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration