Comment 11 for bug 458336

Revision history for this message
mausan66 (mausan66) wrote :

FIxed!

Hi guys,

I had the same problem running Stellarium 10.0.4 on Fedora 12
Unfortunately the trick of deleting the file "/home/USERNAME/.config/Trolltech.conf" doesn't work with this release.

It seems there is some trouble with opengl so I found another way to fix the trouble:

   # gedit /usr/bin/stellarium-wrapper

the original file looks like this:

   #!/bin/bash
   . /usr/share/opengl-games-utils/opengl-game-functions.sh
   GAME=`basename $0 | sed 's/-wrapper.*//'`
   checkDriOK $GAME
   exec $GAME "$@"

Add a line "LANG=en_US.UTF-8" as second line:

   #!/bin/bash
   LANG=en_US.UTF-8
   . /usr/share/opengl-games-utils/opengl-game-functions.sh
   GAME=`basename $0 | sed 's/-wrapper.*//'`
   checkDriOK $GAME
   exec $GAME "$@"

Save and run Stellarium from the menu, It works with my Fedora 12, hope it works with Ubuntu, too.

Let me know

Mauro