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 |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
11-22-2003, 04:06 AM
|
#1
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Rep:
|
how to change resolution ?
hi all~
i set the resolution too high when installing redhat system, and i found nowhere to fix it, any suggestions ?
|
|
|
11-22-2003, 04:22 AM
|
#2
|
Member
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313
Rep:
|
use ctrl+alt+keypad_minus
|
|
|
11-22-2003, 09:55 AM
|
#3
|
LQ Newbie
Registered: Nov 2003
Posts: 21
Rep:
|
you set the possible resolutions for your screen in /etc/X11/XF86Config-4 under Section "Screen"
Find the Subsection "Display" for the Colordepth you default to, and just add a the resolution you want at the beginning of the line to make it the default resolution for that depth.
If have multiple resolutions for a given screen you can rotate through them by Ctrl+alt+keypad(-/+)
|
|
|
11-24-2003, 07:10 AM
|
#4
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
Quote:
Originally posted by trallith
you set the possible resolutions for your screen in /etc/X11/XF86Config-4 under Section "Screen"
Find the Subsection "Display" for the Colordepth you default to, and just add a the resolution you want at the beginning of the line to make it the default resolution for that depth.
If have multiple resolutions for a given screen you can rotate through them by Ctrl+alt+keypad(-/+)
|
one thousand thanx for u i'll try that thanx again
|
|
|
11-25-2003, 07:04 AM
|
#5
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
gosh i failed...
This is the original "Display" block in that file:
Code:
Subsection "Display"
Depth 24
Modes "1152x864"
EndSubsection
and i tried this:
Code:
Subsection "Display"
Depth 24
Modes "1024x768"
Modes "1152x864"
EndSubsection
failed, then i tried this:
Code:
Subsection "Display"
Depth 24
Modes "1024x768"
Depth 24
Modes "1152x864"
EndSubsection
failed again, what on earch should i do ???
Last edited by black; 11-25-2003 at 07:17 AM.
|
|
|
11-25-2003, 07:22 AM
|
#6
|
Member
Registered: Oct 2003
Location: Brussels
Distribution: Slackware-current
Posts: 42
Rep:
|
Have u tried just to put this ? :
Subsection "Display"
Depth 24
Modes "1024x768"
EndSubsection
U should put modes in one line if u want multiple entries
Like this :
Subsection "Display"
Depth 24
Modes "1024x768" "1152x864"
EndSubsection
Otherwise if u do like u did i think he's gonna try to start too resolution in one time wich causes the failure while in line he switches to the seconds in the first doesnt work
Hope this helps
|
|
|
11-25-2003, 07:37 AM
|
#7
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
Quote:
Originally posted by jazzyjazz
Have u tried just to put this ? :
Subsection "Display"
Depth 24
Modes "1024x768"
EndSubsection
U should put modes in one line if u want multiple entries
Like this :
Subsection "Display"
Depth 24
Modes "1024x768" "1152x864"
EndSubsection
Otherwise if u do like u did i think he's gonna try to start too resolution in one time wich causes the failure while in line he switches to the seconds in the first doesnt work
Hope this helps
|
thanx jazzyjazz i tried that but failed either, after that modification nothing happened even if i grabbed Ctrl+Alt+minus and Ctrl+Alt+plus one hundred times. Or should i run something to make it work ?
|
|
|
11-25-2003, 08:10 AM
|
#8
|
LQ Newbie
Registered: Nov 2003
Posts: 21
Rep:
|
Look at the top of that section, and make sure
DefaultColorDepth 24
and make sure the line DontZoom is either commented out, or is not present.
What jazzyjazz said should work.
Just to test it, add another mode to that line like "800x600" and then test switching a couple of times.
|
|
|
11-25-2003, 08:37 AM
|
#9
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
oh yes i got it, i set this resolution as follows:
Code:
Modes "800x600" "1024x768" "1152x864"
and after i relogin the system it works, Cheers~~~
but, something looks very strange, ie it defaults to 800x600 and always display part of the whole screen, and the screen scrolls only when mouse reaches one of the edges, how to get a fullscreen plz ???
|
|
|
11-25-2003, 09:24 AM
|
#10
|
Member
Registered: Oct 2003
Location: Brussels
Distribution: Slackware-current
Posts: 42
Rep:
|
Well if u have default 800x600 is because it is written in first place in your Modes line
The fact that when u reach the edge of ur screen ur desktop moves could be due to the fact that in ur XF86 config file Virtual desktop is enabled.
Try to find for virtual desktop in ur config file and change the input for that line
|
|
|
11-26-2003, 06:10 AM
|
#11
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
Quote:
Originally posted by jazzyjazz
Well if u have default 800x600 is because it is written in first place in your Modes line
The fact that when u reach the edge of ur screen ur desktop moves could be due to the fact that in ur XF86 config file Virtual desktop is enabled.
Try to find for virtual desktop in ur config file and change the input for that line
|
is that section named virtual desktop ? i coulnd found that item just get a "monitor" section...or is that in other file named XF86Config ?
|
|
|
11-26-2003, 06:44 AM
|
#12
|
Member
Registered: Oct 2003
Location: Brussels
Distribution: Slackware-current
Posts: 42
Rep:
|
i'm not sure where exactly it is, but if you open the config file in any text editor, just hit Ctrl+F too look for the word
|
|
|
11-26-2003, 09:03 PM
|
#13
|
Member
Registered: Jul 2002
Location: nowhere
Distribution: GNU
Posts: 118
Original Poster
Rep:
|
i searched bot XF86Config and XF86Config-4 but found no "virtual desktop"
|
|
|
11-26-2003, 10:53 PM
|
#14
|
Member
Registered: May 2003
Location: S.W. Ohio
Distribution: Ubuntu, OS X
Posts: 760
Rep:
|
I am running RH9 and kde. If you go to your start icon -> System Settings -> Display -> enter root password, you can change your settings there. After the change, logout and back in and your settings will take affect.
|
|
|
11-27-2003, 11:08 AM
|
#15
|
Senior Member
Registered: Sep 2003
Location: UK
Distribution: Debian
Posts: 1,215
Rep:
|
To toggle a sort of wierd, magnified, virtual desktop; which may help, do:
Ctrl-Alt-keypad +.
|
|
|
All times are GMT -5. The time now is 11:29 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
|
|