View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 9 posts ] 
Print view Previous topic   Next topic  
Author Message
Search for:
 Post subject: GUI goes black
PostPosted: Sat Mar 29, 2008 11:47 am 
Offline
Joined: Mon Jun 19, 2006 8:23 pm
Posts: 184
so I was playing with the appearance settings and now after the theme is resized it goes black.

I can see the edges and can hit alt+x to bring up virtual terminal but the theme is locked.

is there a config somewhere and what are the default setting I need to change?

_________________
MSI K8MM-V Micro ATX motherboard
3100+ socket 754 AMD Semperon
1GB DDR ram
1TB WD Green Hdd
Hauppauge PVR-350 (tv-out)
SiliconDust HDHomeRun Prime
16X memorex DVD drive


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 12:02 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
http://mysettopbox.tv/phpBB2/viewtopic.php?t=8856


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 12:06 pm 
Offline
Joined: Mon Jun 19, 2006 8:23 pm
Posts: 184
how do i use that?

besides i think it has moe to do with me changing from QT to open gl

_________________
MSI K8MM-V Micro ATX motherboard
3100+ socket 754 AMD Semperon
1GB DDR ram
1TB WD Green Hdd
Hauppauge PVR-350 (tv-out)
SiliconDust HDHomeRun Prime
16X memorex DVD drive


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 12:28 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
electrohacker wrote:
how do i use that?

Easiest would be using an alternate virtual console or an ssh session and logging in as root. You could also boot into single user mode or use the CD as a rescue disk.

The technique demonstrated in that script with the mysql commands is general. You can just as easily use it to change any setting. You can also use the MythWeb tools page to poke at settings or Webmin.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 12:35 pm 
Offline
Joined: Mon Jun 19, 2006 8:23 pm
Posts: 184
I dont have a clue what your trying to say...

all I see there is a script.

is the a config file somewhere that I can change from OPEN GL to QT?

_________________
MSI K8MM-V Micro ATX motherboard
3100+ socket 754 AMD Semperon
1GB DDR ram
1TB WD Green Hdd
Hauppauge PVR-350 (tv-out)
SiliconDust HDHomeRun Prime
16X memorex DVD drive


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 12:55 pm 
Offline
Joined: Mon Jun 19, 2006 8:23 pm
Posts: 184
I got VERY lucky and it just started displaying very slowly... soI fixed the setting

not exactly the easy or repeatable way, but it worked

_________________
MSI K8MM-V Micro ATX motherboard
3100+ socket 754 AMD Semperon
1GB DDR ram
1TB WD Green Hdd
Hauppauge PVR-350 (tv-out)
SiliconDust HDHomeRun Prime
16X memorex DVD drive


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 1:30 pm 
Offline
Joined: Wed Nov 16, 2005 8:55 pm
Posts: 1381
Location: Farmington, MI USA
electrohacker wrote:
I got VERY lucky and it just started displaying very slowly... soI fixed the setting

not exactly the easy or repeatable way, but it worked
The repeatable way is to edit the database directly (as tjc's post hinted at). Specifically, you would want to change the value of ThemePainter for the affected hostname in the settings table. Something like:
Code:
update settings set data="qt" where value="ThemePainter" and hostname="<insert your hostname>";

Of course, insert all "You can damage your DB if you're not careful..." disclaimers here...


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 1:52 pm 
Offline
Joined: Thu Mar 25, 2004 11:00 am
Posts: 9551
Location: Arlington, MA
electrohacker wrote:
I dont have a clue what your trying to say...

I'm trying to decide if you're just jerking my chain or if not how much basic information to backfill. Time to take a cue from Napolean and Oscar Wilde here and assume ignorance...

MythWeb is the web interface to the MythTV application. It is setup automatically at install time. It allows you to use a web browser to do various things like look at listings, schedule recordings, check the system status, and modify certain settings.

Webmin is a web interface for systems administration. It is installed as part of the KnoppMyth system but not enabled by default. You can find instructions for enabling it here: http://www.knoppmythwiki.org/index.php?page=WebminHowTo Among other things it provides a GUI interface to the mysql database.

To use a script you need to grab the text and put it in a Unix text file on the machine in question. There are too many ways to do this for me to cover here (you can find information about this on the wiki). Once you've got it on the system you can run it from a command shell prompt (CLI). Again there are so many ways of getting to a command prompt that it's beyond the scope of this kind of posting. The key thing is that scripts are just lists of commands which you can even enter manually at a command prompt.

Now that we have that background covered... Almost all of the configuration settings for the MythhTV application (versus the KnoppMyth system) are kept in the MythConverg database schema in mysql, mostly in the "settings" table. To change these you have any of the several options outlined previously and expanded below.

-> You can use the MythWeb interface under settings at http://<IP-ADDR-OF-YOUR-KM-BOX-HERE>/mythweb/settings/settings to modify the "ThemePainter" setting.

-> You can enable and use the Webmin mysql interface at https://<IP-ADDR-OF-YOUR-KM-BOX-HERE>:10000/mysql/edit_dbase.cgi?db=mythconverg

-> You can use the mysql utility, following the example commands in the script, to change the settings from the command line.

If you are a lost cause when it comes to the command line I would probably recommend the first approach. It's far more limited since you can only change things in the one table and can't ask the system what the possible values are, but it will work just fine for issues like this.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Mar 29, 2008 3:55 pm 
Offline
Joined: Mon Jun 19, 2006 8:23 pm
Posts: 184
tjc wrote:
electrohacker wrote:
I dont have a clue what your trying to say...

I'm trying to decide if you're just jerking my chain or if not how much basic information to backfill. Time to take a cue from Napolean and Oscar Wilde here and assume ignorance...


I wasnt jerking your chain... this time anyway

thanks for the info, I'll have to figure it out so I can tweak this stuff next time

_________________
MSI K8MM-V Micro ATX motherboard
3100+ socket 754 AMD Semperon
1GB DDR ram
1TB WD Green Hdd
Hauppauge PVR-350 (tv-out)
SiliconDust HDHomeRun Prime
16X memorex DVD drive


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 9 posts ] 


All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 13 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu