Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 27

Thread: Celestia

  1. #11
    Join Date
    Jan 2009
    Beans
    3

    Re: Celestia

    What if that isn't possible? The only linux link is this autopackage that I can tell.

  2. #12
    Join Date
    Jan 2009
    Beans
    3

    Re: Celestia

    If there is no other option I can find, what should I do?
    Last edited by heinar; January 6th, 2009 at 04:13 AM.

  3. #13
    Join Date
    Nov 2004
    Location
    Nyack NY USA
    Beans
    988
    Distro
    Ubuntu Development Release

    Re: Celestia

    Go to the "Software Sources" app (System----> Administration). Make sure that the "Community maintained Open Source Software (universe)" radio button is filled.

    Got to the Add/Remove... menu item in Applications. Search for celestia. Install and profit.
    "Linux is evolution, not intelligent design." - Linus Torvalds

  4. #14
    Join Date
    Feb 2007
    Location
    South Africa
    Beans
    138
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Celestia

    I have just installed Celestia on Intrepid with Synaptic, but it doesn't work correctly.

    I installed the KDE frontend which has a few (limited) menu items. It also doesn't show any stars, even when I select this option, although it does show the star names (e.g. the members of the Pleyades).

    I then removed the KDE frontend and installed the GNOME frontend. Celestia now has a different appearance, but I cannot get to the menus - they briefly appear when I click on them in the menu bar, but then disappear again.

    Has anyone experienced this problem?

  5. #15
    Join Date
    Apr 2007
    Beans
    3,114
    Distro
    Ubuntu

    Re: Celestia

    You will need to disable desktop effects while you run Celestia. For many graphical cards, compiz still does not work well together with applications that use 3D acceleration themselves (Celestia, Google earth, ...).

    If you do not want to loose all your custom compiz settings, do this with the command line:

    Code:
    metacity --replace
    and

    Code:
    compiz --replace
    to switch back to compiz. Do this preferably with no applications open.

  6. #16
    Join Date
    Feb 2007
    Location
    South Africa
    Beans
    138
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Celestia

    Thanks, Vanadium, that solves the problem, although I don't understand why!

  7. #17
    Join Date
    Apr 2007
    Beans
    3,114
    Distro
    Ubuntu

    Re: Celestia

    Compiz is the new Windows manager that features nice and sometimes spectacular visual effects. These rely among other things on 3D acceleration, provided by your graphical card.

    Compiz still has to be considered as early software, though. In addition, many graphical cards with proprietary drivers are difficult to control by the free software community. For these reasons, compiz does not always go well together (yet) with other software that also intensively interacts with the graphical card.

    As a workaround, you temporarily revert to the "traditional" window manager, metacity.

  8. #18
    Join Date
    Feb 2007
    Location
    South Africa
    Beans
    138
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Celestia

    Thanks, now I understand.

    Sorry to be a nuisance, but maybe you could give me some advice on scripting: is it possible to write a script that would switch to metacity, then run Celestia, then switch back to compiz when Celestia is closed? Or is this asking too much?

  9. #19
    Join Date
    Apr 2007
    Beans
    3,114
    Distro
    Ubuntu

    Re: Celestia

    Or is this asking too much?
    I don't think so. It is three lines of code (actually four)

    Code:
    #!/bin/bash
    metacity --replace
    celestia
    compiz --replace
    You store this in a text file, for example "celest". Then store the text file in a convenient location. I use a directory "bin" in my home directory. Give the file execute permissions (right-click in nautilus, properties).

    Now you can change the menu item for celestia such that it calls "celest" instead of "celestia-gnome" (you need to provide the full path: "~/bin/celest".

  10. #20
    Join Date
    Feb 2007
    Location
    South Africa
    Beans
    138
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Celestia

    Works like a charm after a minor change:

    Code:
    #!/bin/bash
    metacity --replace &
    celestia
    compiz --replace &
    Thanks -- you're a star! (No pun )

Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •