LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 12-07-2004, 07:41 AM   #1
troutstalker
LQ Newbie
 
Registered: Dec 2004
Posts: 3

Rep: Reputation: 0
Set Display Wrong... Can't See to Fix


It seems I have set the display resolution on my first ever Linux attempt too high. Now I have a notebook that is obviously up and running but I can't see anything.

I'm familiar with windows and safe mode, but how do I reset a Linux box so I can get that display setting back down and see the screen?

(obviously a REAL newbie)
 
Old 12-07-2004, 07:54 AM   #2
jeffreybluml
Member
 
Registered: Mar 2004
Location: Minnesota
Distribution: Fedora Core 1, Mandrake 10
Posts: 405

Rep: Reputation: 30
cntl-alt-backspace
or
cntl-alt-F1

gets you to a command line where you can log in. Then change the default depth in your /etc/X11/XFree86Config (or xorg.conf depending on your distro) display section. For instance, if the default depth is set to 24, change it to 16. Save and reboot. I THINK this will change your res....

Somebody please correct me if I'm wrong!!

Good luck,
 
Old 12-07-2004, 08:33 AM   #3
kees-jan
Member
 
Registered: Sep 2004
Distribution: Debian, Ubuntu, BeatrIX, OpenWRT
Posts: 273

Rep: Reputation: 30
This will not change your resolution. This will only change the colordepth.

Configuring X is distribution dependent. Which distribution are you using?
Do you have an other computer with which you can log in remotely into your laptop, such that you can fix it from there?

Groetjes,

Kees-Jan
 
Old 12-07-2004, 08:51 AM   #4
troutstalker
LQ Newbie
 
Registered: Dec 2004
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by kees-jan
Which distribution are you using?
Do you have an other computer with which you can log in remotely into your laptop, such that you can fix it from there?
1. Fedora Core 3
2. Yes (But don't know how... is there a good step by step somewhere?)
 
Old 12-07-2004, 09:04 AM   #5
jeffreybluml
Member
 
Registered: Mar 2004
Location: Minnesota
Distribution: Fedora Core 1, Mandrake 10
Posts: 405

Rep: Reputation: 30
kees-jan, am I missing something? Is there a reason this can't be dealt with from the actual machine, on a command line, after a cntl-alt-backspace?

If you're on FC3, I believe the file will then be /etc/X11/xorg.conf. Once you're at a command line, you can always enter:

man xorg.conf
or
man xorg

and see if it tells you how to set the display from the xorg.conf file. To edit the file, you'll need some familiarity with one of the comand line editors like pico or vi. Then you'd just enter

pico /etc/X11/xorg.conf
or
vi /etc/X11/xorg.conf

I'm not using xorg.conf, so I can't even look at am example entry. Sorry.

Anybody have experience changing the display resolution from xorg.conf?
 
Old 12-07-2004, 02:52 PM   #6
kees-jan
Member
 
Registered: Sep 2004
Distribution: Debian, Ubuntu, BeatrIX, OpenWRT
Posts: 273

Rep: Reputation: 30
You are not missing anything. This can be dealt with by editing the appropriate file. However, this is nontrivial.

Most distributions have configuration tools that edit the file for you. I suspect some may be graphical, though that would create a chicken-and-egg problem, as you observe.

I don't know enough of FC3 to be of much assistance, however.

Groetjes,

Kees-Jan
 
Old 12-07-2004, 03:44 PM   #7
jonr
Senior Member
 
Registered: Jan 2003
Location: Kansas City, Missouri, USA
Distribution: Ubuntu
Posts: 1,040

Rep: Reputation: 47
Quote:
Originally posted by jeffreybluml

Anybody have experience changing the display resolution from xorg.conf?
Yes. I had to do it just this morning, in fact.

First, at the command line, as root, do

Code:
cd /etc/X11
cp ./xorg.conf xorg.conf.safe

--so that you'll have a backup of the file in case you really mess it up by accident.

Still as root, run vim or another command-line editor and edit /etc/X11/xorg.conf so that the section called
"Display" for the color depth currently in use on your machine has a line that says "Virtual 800 600" if that's
the resolution you want; "Virtual 1024 768" if that's your desired setting, etc. In other words, horizontal
value then vertical value, no punctuation between.

If you're unsure what color depth you have now, just change every single one of the "Display" sections
to read the resolution you want. It will only pick up on the one that matches your color depth.

I hope you know how to use a command-line editor. If not, do "man vim" and pick out the essentials. It's
really easy to do the BASIC things with vim (or vi, if that's the version you have, but you probably have vim).
Or do a search here, or elsewhere, for a vim tutorial or tips. There are threads here where the essentials
were spelled out for users in a jam like yours, so searching for keyword "vim" ought to turn up how to do
what you need to do, if you're unfamiliar with vim.

After you've made the change to the resolution settings, log out and log in again as normal user, start up X, and you ought to
be OK.
 
Old 12-07-2004, 03:51 PM   #8
visaris
Member
 
Registered: Dec 2004
Distribution: gentoo
Posts: 190

Rep: Reputation: 30
vim might be a little hard for new users to use. Try nano, or pico, or emacs. They all support arrow keys and the like.

The part of your /etc/X11/xorg.conf file you want to change should look somthing like this (it depends):

Code:
Section "Screen"
    Identifier  "Screen 1"
    Device      "GeForce 6800 GT"
    Monitor     "VA930"
    DefaultDepth 24

    SubSection "Display"
        Depth           24
        Modes           "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
EndSection
You want to remove the resolutions that are too high. change the modes lines to somthing like:

Code:
SubSection "Display"
        Depth           24
        Modes           "800x600" "640x480"
EndSubsection
instead. Now go back to the graphical configuration tool you used to set the res too high, and put it back to somthing you know works. As always, "man xorg.conf" has more details.
 
Old 12-07-2004, 04:05 PM   #9
jonr
Senior Member
 
Registered: Jan 2003
Location: Kansas City, Missouri, USA
Distribution: Ubuntu
Posts: 1,040

Rep: Reputation: 47
Quote:
Originally posted by visaris
vim might be a little hard for new users to use. Try nano, or pico, or emacs. They all support arrow keys and the like.

Thanks for suggesting the other editors. My version of vim supports arrow keys, and I assumed they all did.
 
Old 12-07-2004, 04:10 PM   #10
visaris
Member
 
Registered: Dec 2004
Distribution: gentoo
Posts: 190

Rep: Reputation: 30
Gee, I didn't even know vim supported arrow keys.. I might have to give it a try again ; )
 
Old 12-07-2004, 04:27 PM   #11
jonr
Senior Member
 
Registered: Jan 2003
Location: Kansas City, Missouri, USA
Distribution: Ubuntu
Posts: 1,040

Rep: Reputation: 47
Quote:
Originally posted by visaris
Gee, I didn't even know vim supported arrow keys.. I might have to give it a try again ; )
I had to use it one day out of NO CHOICE! (It's a long story.) So I gritted my teeth and read enough to get by
and now I use it a lot--with only the arrow keys for navigation. Obviously I don't use it in very big files....

Emacs terrifies me.

Midnight Commander can be used in a terminal but it's tricky compared to in an X session, and lots of folks
don't have Midnight Commander anyway.

I learned quite a bit by setting my monitor wrong! (Actually, my new monitor wasn't even detected right
when I plugged it in, so I had to fix that, too.) Now I'm not afraid to mess with the config file.

To the originator of this thread I should add, be sure your vertical and horizontal refresh rates are set
correctly--setting them way wrong is about the only thing you can do that can actually damage your monitor.
 
Old 12-07-2004, 11:14 PM   #12
troutstalker
LQ Newbie
 
Registered: Dec 2004
Posts: 3

Original Poster
Rep: Reputation: 0
VI-reka!

After searching and finding a web page where someone had posted the contents of the xorg.conf file and figuring out how to use vi to edit the file, I was able to get my screen resolution reset to something that would allow me reset it back to the 1024x768 I should have left it at... on to apache2 and creating ftp user accounts so I can upload web pages to my new linux server... whew... it's all so new!
 
Old 04-28-2006, 06:29 AM   #13
Neopatic
LQ Newbie
 
Registered: Apr 2006
Posts: 2

Rep: Reputation: 0
@troustalker

could you give me the link? I got the same problem
 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Might need application to fix dim display shadowsnipes Linux - Software 2 10-30-2005 06:16 PM
Wrong monitor settings in XF86config-4 and cant see to fix it meshsmooth Linux - Newbie 4 05-13-2004 07:52 AM
how to fix imap wrong domain mapping problem? htm Linux - Networking 29 04-25-2004 11:24 AM
How do i fix this open_basedir restriction in effect. File is in wrong directory DropHit Linux - Software 2 02-26-2004 06:28 PM
DVDROM-device points to the wrong hd.. howto fix? Debianewb Linux - Hardware 2 10-28-2002 07:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

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