Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Screen Resolution problem on FC4 (used to work OK on FC3)

 
   Linux (Home) -> Red Hat Installation RSS
Next:  knoppix /printer problem  
Author Message
eacosta

External


Since: Aug 06, 2005
Posts: 16



(Msg. 1) Posted: Sun Jul 10, 2005 1:18 am
Post subject: Screen Resolution problem on FC4 (used to work OK on FC3)
Archived from groups: linux>redhat>install (more info?)

Hello,

I have a 1600x1200 and millions of colors capable LCD and Graphics
card. However when I set the resolution from Desktop->System
Settings->Display to 1600x1200, after rebooting the GUI, it does
panning from a base resolution od 1280x1024 (quite anoying!!). Digging
around I found there is another tool in Desktop->Preferences->"Screen
Resolution" This tool doesnt let me get past 1280x1024 no matter what!

I had to go back to the Display Settings an put it back to 1280x1024 to
avoid the annoying panning.

The odd thing is that this used to work fine on FC3. I still have it
installed on a different partition and I can boot it and set it to
1600x1200. I'd really really appreciate any ideas.
Back to top
Login to vote
eacosta

External


Since: Aug 06, 2005
Posts: 16



(Msg. 2) Posted: Sun Jul 10, 2005 11:19 am
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Sorry, that didn't make any difference. I still get the panning after
switching to 1600x1200
Back to top
Login to vote
Lenard

External


Since: Aug 04, 2005
Posts: 86



(Msg. 3) Posted: Sun Jul 10, 2005 2:03 pm
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

eacosta.TakeThisOut@yahoo.com wrote:

> Hello,
>
> I have a 1600x1200 and millions of colors capable LCD and Graphics
> card. However when I set the resolution from Desktop->System
> Settings->Display to 1600x1200, after rebooting the GUI, it does
> panning from a base resolution od 1280x1024 (quite anoying!!). Digging
> around I found there is another tool in Desktop->Preferences->"Screen
> Resolution" This tool doesnt let me get past 1280x1024 no matter what!
>
> I had to go back to the Display Settings an put it back to 1280x1024
> to avoid the annoying panning.
>
> The odd thing is that this used to work fine on FC3. I still have it
> installed on a different partition and I can boot it and set it to
> 1600x1200. I'd really really appreciate any ideas.
>

Log out of your GUI interface, press the three key combo of Ctrl+Alt+F1
[to F6] then log on as root suppling the password when asked. As root
type something like(2 lines, press the 'Enter' key after each one);

init 3
system-config-display --reconfig

See 'system-config-display --help' without the quoters for more options.

You can test by typing 'startx' without the quotes when done type and
your at the CLI type something like 'init 5' without the quotes.
Remember to go back the the CLI and logout for root.


--
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety." -- B. Franklin, 1759
Back to top
Login to vote
Lenard

External


Since: Aug 04, 2005
Posts: 86



(Msg. 4) Posted: Sun Jul 10, 2005 11:48 pm
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

eacosta.RemoveThis@yahoo.com wrote:

> Sorry, that didn't make any difference. I still get the panning after
> switching to 1600x1200

Try copying your FC3 /etc/X11/xorg.conf file to the same location for
FC4 (/etc/X11).


--
"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety." -- B. Franklin, 1759
Back to top
Login to vote
Paul Kairis

External


Since: Jul 11, 2005
Posts: 2



(Msg. 5) Posted: Mon Jul 11, 2005 6:38 am
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

post the /etc/X11/xorg.conf I suspect there is a ViewPort option
that forces the window panning. Comment it out, restart Xserver.

HTH


eacosta RemoveThis @yahoo.com wrote:
>
> Sorry, that didn't make any difference. I still get the panning after
> switching to 1600x1200
Back to top
Login to vote
eacosta

External


Since: Aug 06, 2005
Posts: 16



(Msg. 6) Posted: Wed Jul 13, 2005 3:23 pm
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Here is the bottom of my xorg.conf. I commented the Viewport option out
as you said, but it made no difference:

Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "210T/MP/LXA"
DisplaySize 510 320
HorizSync 30.0 - 93.0
VertRefresh 56.0 - 85.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "ati"
VendorName "Videocard vendor"
BoardName "ATI Mach64"
EndSection

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

# Viewport 0 0
Depth 24
Modes "1600x1200" "1400x1050" "1280x960" "1280x800"
"1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "DRI"
Group 0
Mode 0666
EndSection


Furthermore, I believe the problem is with gnome-display-properties
utility, since it wont let me change the resolution past 1280x1024,
even though system-config-display is set to 1600x1200. I dont remember
gnome-display-properties been part of FC3. I have ran this utility with
strace and I cant see it writing to a configuration file.
Back to top
Login to vote
Paul Kairis

External


Since: Jul 11, 2005
Posts: 2



(Msg. 7) Posted: Thu Jul 14, 2005 5:24 am
Post subject: Re: Screen Resolution problem on FC4 (used to work OK on FC3) [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

eacosta DeleteThis @yahoo.com wrote:
>
> Here is the bottom of my xorg.conf. I commented the Viewport option out
> as you said, but it made no difference:
>
> Section "Monitor"
> Identifier "Monitor0"
> VendorName "Monitor Vendor"
> ModelName "210T/MP/LXA"
> DisplaySize 510 320
> HorizSync 30.0 - 93.0
> VertRefresh 56.0 - 85.0
> Option "dpms"
> EndSection
>
> Section "Device"
> Identifier "Videocard0"
> Driver "ati"
> VendorName "Videocard vendor"
> BoardName "ATI Mach64"
> EndSection
>
> Section "Screen"
> Identifier "Screen0"
> Device "Videocard0"
> Monitor "Monitor0"
> DefaultDepth 24
> SubSection "Display"
>
> # Viewport 0 0
> Depth 24
> Modes "1600x1200" "1400x1050" "1280x960" "1280x800"
> "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
> EndSubSection
> EndSection
>
> Section "DRI"
> Group 0
> Mode 0666
> EndSection
>
> Furthermore, I believe the problem is with gnome-display-properties
> utility, since it wont let me change the resolution past 1280x1024,
> even though system-config-display is set to 1600x1200. I dont remember
> gnome-display-properties been part of FC3. I have ran this utility with
> strace and I cant see it writing to a configuration file.


Thanks for posting. I assume you restarted X and saw not difference.

My only thought is the the ATI driver that FC4 has is not the same as
the ATI driver FC3 had. Your xorg.conf seems ok. You could remove some
of the Modes, just keep the ones you like.

The gnome | kde tool may not show you the max resolution but the system
stars at the max. resolution and then drops to the lesser if the driver
cant handle it.

HTH
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Black Screen of Death - My laptop is being a pain. When I install it with FC6, selecting KDE rather than Gnome, all goes well. It reboots fine after running firstboot and the gui is fine. I can use it no problems, that is everything works. After using it, I then shut it down...

Black screen installing Fedora Core 6 - I'm trying to install Fedora Core 6 on my machine. My system is as follows: AMD Athlon XP 2000+ MSI KT3 Ultra2 Motherboard 1.5gig RAM ATI Radeon 9000 (I believe this is my problem) When I start the install in text mode, I get to a blue screen and my DV...

knoppix /printer problem - hi i have a knoppix version of linux and i can't get my hp laser 5l printer to work . any ideas thanks irv

Problem with Redhat on WinXP - Hi guys, I am trying to run the Red Hat Enterprise Linux 3 using the VMWare Player on Windows XP. However, whenever I tried to boot up, Red Hat would check for additional hardware and the VMWare player would freeze ultimately. Any idea what went wrong...

Redhat 9 install problem - I downloaded the iso images and used nero to create the disc for RedHat Client 5. The images have been downloaded several times. "RHEL5-Client-20061111.0-i386-disc1-ftp.iso - RHEL5-Client-20061111.0- i386-disc6-ftp.iso' because of the issues I've b...
       Linux (Home) -> Red Hat Installation All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows Forums
 Game Forums
  Linux Forums
 Mac Forums
 PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact