LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 06-17-2010, 11:58 PM   #1
mganesh30
LQ Newbie
 
Registered: Jul 2009
Posts: 23

Rep: Reputation: 15
Fedora KDE - Can't save Display Settings


I have just installed KDE 4.4 on Fedora 12 in addition to GNOME. The default Display resolution is the highest available. I changed it to a lower resolution. However, when I reboot, the resolution switches back to the default setting. Please help.
 
Old 06-18-2010, 12:57 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Setting a permanent display resolution ( as root ) :

Please open a terminal window and type : 1) su

2) system-config-display

... Your new settings will then be saved.
...
 
Old 06-18-2010, 08:21 AM   #3
mganesh30
LQ Newbie
 
Registered: Jul 2009
Posts: 23

Original Poster
Rep: Reputation: 15
Display settings not saved

Quote:
Originally Posted by knudfl View Post
Setting a permanent display resolution ( as root ) :

Please open a terminal window and type : 1) su

2) system-config-display
... Your new settings will then be saved.

..
Tried this but I get the following
bash system-config-display; command not found

Please help
 
Old 06-18-2010, 08:39 AM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
May be not installed ?

# yum install system-config-display

.. will provide /usr/bin/system-config-display
..
 
Old 06-18-2010, 08:49 AM   #5
mganesh30
LQ Newbie
 
Registered: Jul 2009
Posts: 23

Original Poster
Rep: Reputation: 15
KDE Display Resolution

Thanks I did that and now the settings are saved. However, the resolution of the Login Screen has also changed. This was not the case with GNOME. Please help.
 
Old 06-18-2010, 09:05 AM   #6
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Quote:
Thanks I did that and now the settings are saved.
However, the resolution of the Login Screen has also changed.
This was not the case with GNOME.
Sorry, that's just how it is with KDE,
nothing to do , AFAIK.
..
 
Old 06-19-2010, 10:00 AM   #7
mganesh30
LQ Newbie
 
Registered: Jul 2009
Posts: 23

Original Poster
Rep: Reputation: 15
Thanks for your help. However I find that the Refresh Rate gets set automatically at 75.1 Hz with the result that the scroll bar on the right side of a window goes slightly out of the screen. If I manually change it to 70 Hz, the screen is OK but I can't save it. Also Refresh Rate is not found in system-config-display.

Please help.
 
Old 06-19-2010, 01:38 PM   #8
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
It should be possible to change it in /etc/X11/xorg.conf .
Example ' Section "Monitor" ' :
Code:
Section "Monitor"
    Identifier "monitor1"
    VendorName "Generic"
    ModelName "1024x768 @ 60 Hz"
    HorizSync 31.5-48.0
    VertRefresh 50.0-70.0
EndSection
Can also be used : VertRefresh 70.0-70.0
..
 
Old 06-19-2010, 09:57 PM   #9
mganesh30
LQ Newbie
 
Registered: Jul 2009
Posts: 23

Original Poster
Rep: Reputation: 15
Thanks. But when I type /etc/X11/xorg.conf, I get Permission Denied even as Root. Please help
 
Old 06-20-2010, 01:06 AM   #10
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you need the - after su
su = root with user $PATH
su - = root with root $PATH
the two are VERY different on fedora
 
Old 06-20-2010, 04:36 AM   #11
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
The command can be : 1) su ( see post #10 John VV )
2) gedit /etc/X11/xorg.conf

( You will get 'Permission denied' when you try to execute
the text file with the command : /etc/X11/xorg.conf )


... Or you can copy xorg.conf to /home/<username>/
Edit it, and : 1) su , 2) chown root:root xorg.conf
3) cp -a xorg.conf /etc/X11/

..

Last edited by knudfl; 06-20-2010 at 04:38 AM.
 
  


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
How to save display settings in Kubuntu 10.4? lrehn Linux - Newbie 2 05-25-2010 12:14 PM
Cannot save network settings in Fedora Strangers5 Linux - Newbie 1 04-03-2008 06:26 AM
save network interface settings on debian with kde 3.5 sunpascal Linux - Newbie 2 02-03-2006 08:54 PM
Save KDE settings mad4linux Linux - Software 6 08-18-2005 04:26 PM
Mandrake 10.1 Settings Will Not Save After Reboot (kde) mdk1010 Mandriva 6 04-07-2005 12:30 AM

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

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