58197 Hangs on Startup (Ubuntu 13.10)

Discussion in 'Support!' started by jdbernard, December 11, 2013.

  1. jdbernard

    jdbernard New Member

    Messages:
    2
    Likes Received:
    0
    I am on Ubuntu 13.10 using the proprietary NVidia drivers (package nvidia-319). The previous build (57703) does not have this issue on this system.

    When I launch the PA executable the window is created, but remains black. The following is logged to the console:

    Code:
    [20:04:25.694] INFO Log file /home/jdbernard/.local/Uber Entertainment/Planetary Annihilation/log/PA-20-04-25.694.txt opened
    [20:04:25.694] INFO Client loaded 0 mods
    [20:04:25.718] INFO GL_VENDOR: NVIDIA Corporation
    [20:04:25.718] INFO GL_RENDERER: GeForce GT 440/PCIe/SSE2
    [20:04:25.718] INFO GL_VERSION: 4.3.0 NVIDIA 319.32
    [20:04:25.718] INFO GL_SHADING_LANGUAGE_VERSION: 4.30 NVIDIA via Cg compiler
    [20:04:25.718] INFO Gamma correct pipeline enabled.
    [20:04:25.788] INFO Got Expose event
    [20:04:25.788] INFO Got Expose event
    [20:04:25.788] INFO Got Expose event
    [20:04:25.788] INFO Configure, 1280 by 720
    [20:04:25.790] INFO build version 58197
    [20:04:25.790] INFO Coherent content root: "coui://ui/"
    [20:04:25.790] INFO Coherent host dir: "/home/jdbernard/programs/planetary-annihilation/host"
    [20:04:25.790] INFO Coherent local store: "/home/jdbernard/.local/Uber Entertainment/Planetary Annihilation/localstore"
    Could not find libudev.
    /home/jdbernard/programs/planetary-annihilation/host/CoherentUI_Host: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory
    [20:04:25.836] ERROR multiple models in spec for Air Factory have nav structures, this is unexpected.
    [20:04:25.838] ERROR multiple models in spec for Advanced Air Factory have nav structures, this is unexpected.
    [20:04:25.841] ERROR /pa/units/air/bomber_torpedo/bomber_torpedo.papa: open failed
    [20:04:25.887] INFO {{FMOD}} fmod buffer size 5
    [20:04:25.892] INFO Setting graphics to high
    [20:04:25.892] INFO Got Expose event
    [20:04:32.946] INFO Got Expose event
    

    The log file at /home/jdbernard/.local/Uber Entertainment/Planetary contains the same information that was logged to the console.
  2. SXX

    SXX Post Master General

    Messages:
    6,896
    Likes Received:
    1,812
    Are you sure you're not created symbolic link to libudev?

    Currently you have black screen because of this:
    Code:
    /home/jdbernard/programs/planetary-annihilation/host/CoherentUI_Host: error while loading shared libraries: libudev.so.0: cannot open shared object file: No such file or directory
  3. jdbernard

    jdbernard New Member

    Messages:
    2
    Likes Received:
    0
    Quick response! :)

    I noticed that in the log. I assumed the previous build was using udev also and that this was a bug in the build, but it looks like this is a known issue with Ubuntu 13.x

    I symlinked libudev locally in both the i386 and x86-64 folders and that solved the problem:

    Code:
    cd /lib/i386-linux-gnu
    sudo ln -s libudev.so.1 libudev.so.0
    cd /lib/x86_64-linux-gnu
    sudo ln -s libudev.so.1 libudev.so.0

Share This Page