Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then 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.
|
 |
|
04-16-2003, 04:45 PM
|
#1
|
LQ Newbie
Registered: Jan 2003
Location: Burlington, ON Canada
Distribution: RH8
Posts: 26
Rep:
|
RH9 theme problem
My desktop layout just went screwy. All my default icons changed to the same thing. I was just reading email and have not installed anything today.
When I try to start theme manager I get this error:
The default theme schemas could not be found on. This means that you probably don't have metacity installed, or that your gconf is configured incorrectly.
I am running rh9, gnome with the default bluecurve theme.
Can anyone tell me how to fix this mess.
|
|
|
04-17-2003, 08:35 PM
|
#2
|
LQ Newbie
Registered: Jan 2003
Location: Burlington, ON Canada
Distribution: RH8
Posts: 26
Original Poster
Rep:
|
I have reinstalled metacity and the themes and theme manager. It didn't make a difference.
Is there a default gconf I can install to at least put gnome back to its default settings?
|
|
|
07-10-2003, 05:09 PM
|
#3
|
LQ Newbie
Registered: Jul 2003
Location: Texas
Distribution: RH 8.0 & 9.0
Posts: 7
Rep:
|
I am going through the same thing. It just kind of happened. Have you had any luck resolving it?
|
|
|
07-10-2003, 05:32 PM
|
#4
|
LQ Newbie
Registered: Jun 2003
Location: MD
Distribution: RH 9
Posts: 3
Rep:
|
The same thing happened to me too: between upgrading control center and gconf to their latest versions some of the gconf entries went MIA. I am a  myself so I reinstalled both programs apparently in the right order, because it now works. The other thing I noticed is that the schemas were now installed in /usr/etc/gconf, while I believe un RH they are found in /etc/gconf. I symlinked /etc/gconf yo /usr/etc/gconf, maybe that's what soved it. MAybe one of the guru's can shed some more light on it.
|
|
|
07-23-2003, 07:31 AM
|
#5
|
LQ Newbie
Registered: Jul 2003
Location: Liverpool, UK.
Distribution: RH9
Posts: 6
Rep:
|
Noobie Help needed
Hi, I have the same thing, I noticed it just after install, I went to change some setting (perhaps the theme itself, I forget), I got an error and blam, all my icons are the same, folders, files, etc. The metacity error comes up.
Metacity is installed (from RPM), but I am not sure what I need to change in gconf that will get it functioning? Or where it needs to be?
Current path is:
/etc/gconf
I want to do a symlink to 'usr/etc/gconf' but I am a week old Linux baby so I am not sure how its done, i'm off to google but any direct help would be much appreciated.
Cheers.
Last edited by the scarecrow; 07-23-2003 at 07:36 AM.
|
|
|
07-24-2003, 03:54 PM
|
#6
|
LQ Newbie
Registered: Jul 2003
Location: Texas
Distribution: RH 8.0 & 9.0
Posts: 7
Rep:
|
I fixed my desktop using the gconf configuration editor (graphic interface) by putting the statement "Bluecurve" (without quotes)in /desktop/gnome/interface/icon_theme. That fixed the broken icons instantly. It has not fixed the general theme problems, and I still get the same type of metacity and schema errors when trying to use the theme manager. I have not found an answer to that one yet, but am still looking.
|
|
|
07-28-2003, 09:55 PM
|
#7
|
LQ Newbie
Registered: Jul 2003
Posts: 1
Rep:
|
I had the same problems. It happened after I did some upgrades and also tried to install a SMB network printer. The printer installation failed. Anyway, I found a lot of values in gconf were reset to <no value>. I used gconf-editor and copy the values from a working RH9 system to fix the icon problem. The theme problem was fixed by looking for %gconf.xml.bak files in the /etc/gconf directory. Copying those files back to %gconf.xml in the same directory.
|
|
|
07-29-2003, 06:09 AM
|
#8
|
Member
Registered: Dec 2002
Location: Cyberspace, address block 212
Distribution: FreeBSD 6.1-RELEASE
Posts: 34
Rep:
|
I have been having some very big problems with GNOME (Tool bar down the bottom doesnt load, errors left right and center) so i changed to KDE. I am using Redhat 7.3, but I am upgrading to redhat 9 soon.
|
|
|
08-07-2003, 04:41 AM
|
#9
|
LQ Newbie
Registered: Aug 2003
Posts: 3
Rep:
|
This worked for me...
create a shell script with the following in it (this is only three lines):
-----------snip---------
for i in /etc/gconf/schemas/* ; do
GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule $i > /dev/null
done
--------endsnip---------
What this does is reset the schemas to the default.
--------newbie section------
to create this script follow these steps:
-use your favourite editor to insert the above snip contents in a file and then save (as a 'good practice' rule name scripts with a .sh at the end).
-then use the following command to make the script an executable
$chmod 755 schemareset.sh
then become root and run the script.
-------end newbie section--------
I hope this helps you guys
|
|
|
08-07-2003, 04:41 AM
|
#10
|
LQ Newbie
Registered: Aug 2003
Posts: 3
Rep:
|
This worked for me...
create a shell script with the following in it (this is only three lines):
-----------snip---------
for i in /etc/gconf/schemas/* ; do
GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule $i > /dev/null
done
--------endsnip---------
What this does is reset the schemas to the default.
--------newbie section------
to create this script follow these steps:
-use your favourite editor to insert the above snip contents in a file and then save (as a 'good practice' rule name scripts with a .sh at the end).
-then use the following command to make the script an executable
$chmod 755 schemareset.sh
then become root and run the script.
-------end newbie section--------
I hope this helps you guys
|
|
|
08-07-2003, 08:25 AM
|
#11
|
LQ Newbie
Registered: Jul 2003
Location: Texas
Distribution: RH 8.0 & 9.0
Posts: 7
Rep:
|
Before I try your script, what distribution are you running?
|
|
|
08-07-2003, 08:33 AM
|
#12
|
LQ Newbie
Registered: Jul 2003
Location: Texas
Distribution: RH 8.0 & 9.0
Posts: 7
Rep:
|
What brought you to this solution? How did your original schema get damaged? I have NEVER touched my schemes and still had the failure. Sorry for all the questions, I would rather know the "why" before I blindly apply a fix...
|
|
|
08-08-2003, 05:42 PM
|
#13
|
LQ Newbie
Registered: Aug 2003
Posts: 3
Rep:
|
distro: redhat 9 kernal 2.4.20-8 gnome 2.2.0
I actually had the problem as described by some of the guys above. I then stupidly changed the schema and did not take note what the settings were before i changed it.
I then researched into restoring the schema and this is what I came up with after a bit of research.
I found that fixed all the problems...luckily :-)
|
|
|
08-11-2003, 11:57 AM
|
#14
|
LQ Newbie
Registered: Jul 2003
Location: Texas
Distribution: RH 8.0 & 9.0
Posts: 7
Rep:
|
The script worked. Very odd, I still wonder what caused the original modification though. Good fix, what resources did you use to research the schema restoration? For my own future reference...
|
|
|
08-14-2003, 10:52 PM
|
#15
|
LQ Newbie
Registered: Aug 2003
Posts: 2
Rep:
|
RH9 theme problem
I am having exactly the same problem.
When I try to run the script posted
I get this message
" MUST SET THE GCONF_CONFIG_SOURCE"
please please HELP
|
|
|
All times are GMT -5. The time now is 08:19 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
|
|