Warzone2100 fails to display battlefield

So, i installed warzone2100 from the repos but it will not load cutscene(like the introduction)
and when i start the tutorial or a game i can see the menus but not the units just a black screen. if i click on a unit then it will highlight the bok around it but i still cannot see the unit.
this is what i get from running it in the terminal where i start the program, go to a tutorial and then exit.
which: no gdb in (/opt/wine/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bin/perlbin/site:/usr/bin/perlbin/vendor:/usr/bin/perlbin/core)
info |05:09:32: [rebuildSearchPath] * Failed to remove path /usr/data/ again
info |05:09:32: [rebuildSearchPath] * Failed to remove path /usr/share/warzone2100/ again
info |05:09:34: [seq_Play] unable to open 'sequences/brfcom.ogg' for playback
info |05:09:34: [seq_Play] unable to open 'sequences/fastplay.ogg' for playback
please help.

Hello insane_allen!
Maybe it's a reported bug:
https://bugs.launchpad.net/ubuntu/+sour … bug/408169
but some related forum threads:
http://forums.wz2100.net/viewtopic.php?t=3670
http://forums.wz2100.net/viewtopic.php?f=28&t=2262
http://ubuntuforums.org/showthread.php?t=1069604&page=2

Similar Messages

  • Windows 7 x64 Pro, desktop GUI fails to display correctly, or crashes, when High RAM load, and even after. HW changed, same issue. Please Help.

    Hi Guys,
    I have have this horror issue with my PC. I have even changed the hardware configuration and the problem still persists. My PC fails to display the desktop correctly after using highly RAM intensive applications, especially Chrome, but even after getting
    the chance to close it, or waiting for it to crash by itself, the PC is still not able to display correctly the GUI, even on other browser/applications as shown in the screenshots. 
    1st Hardware Config:
    Intel Core2Quad Q9450
    4x2GB DDR2
    MSI P43 motherboard
    Ati Radeon x550 video card
    Software used, that seemed important for me to mention:
    NOD32 v4.2
    Comodo Firewall 5.12
    Chrome
    Screenshot Captor
    SpeedFan
    Other mentions:
    Aero is disabled, because I've considered that it's one of the causes.
    So, I've considered that it's a RAM issue or a videocard issue, and I've upgraded to:
    Intel Core i7 3770k
    4x8GB DDR3
    Asus P8Z77V-LX motherboard
    Intel GPU integrated in the 3770k CPU
    The problem just happened 2 times on this rig also, and the RAM was not even coming close to  it's maximum capacity of 31.7GB. It was at ~20GB's.
    Also, this is another videocard(Intel's integrated GPU), so we can exclude the videocard from the suspects.
    My suspects:
    1) some desktop manager bugs, or other similar issue
    2)  video memory allocation - I'm still suspecting that it can be caused by the amount of RAM dedicated to the videocard, currently, I think  that it is at 256MB.
    3) some poorly designed components of Chrome/Screenshot Captor - still very questionable since there are enough resources on this system, so there should be no fight over resources. And when the system is barely used there are no issues.
    4) Adobe Shockwave Flash - maybe this one????
    I have attached a set of 20 screenshots here, these were taken on the 1st configuration of my PC, using Q9450:
    http://imgur.com/a/Mc8hI#4
    Notice how it distorts the image by duplicating it and showing it in a smaller space, or how does it displays those black rectangles. In those moments, the PC is fully functional(the apps are running the background), without being slowish or something, but
    you can hardly control it like that. For example, I've tried to remove the mouse from the USB, and then I've insterted it back, the image was not displayed correctly, but the mouse was recognised instantly and the pointer was controlable.
    Same thing still happens on the new configuration. Please advise me.
    LE: OS is Windows 7 x64 SP1 Professional and it's Geniune. There is no cracked software on this PC. No games. I've tried to maintain it as clean as possible.

    Hi,
    First, please be ensured that you have installed the latest drivers and all the updates.
    Then check whether this issue will not in
    Safe Mode. If it didn’t occurred, I suggest you narrow down the cause in
    Clean Boot mode.
    In addition, try to create a new profile to see how it works.
    Hope this helps.
    Vincent Wang
    TechNet Community Support

  • Bug (possibly?): SelectManyShuttle fails to display selected items

    Bug (possibly?): SelectManyShuttle fails to display selected items when valuePassThru="true" in ADF 10g
    Hello all,
    When run, the example below shows a Select Many Shuttle with four choices in the leading list. When items are shuttled to the training list and the page is submitted the trailing list is rendered with no items selected. Is this a bug?
    Configuration
    This example was constructed using jDeveloper 10.1.3.5.0.
    A new application was created using the Web Application [JSF, ADF BC] template although no business components are used.
    Steps to Reproduce
    1. Create the following backing bean class.
    package com.fmcna.adf.test.view;
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.model.SelectItem;
    public class ShuttleBean {
        public ShuttleBean() {
        private List availableItems;
        private List selectedItems;
        public void setAvailableItems(List availableItems) {
            this.availableItems = availableItems;
        public List getAvailableItems() {
            //populate with a List of SelectItem instances on the inital call to this method
            if(this.availableItems==null) {
                this.availableItems=generateSelectItemsList();
            return availableItems;
        public void setSelectedItems(List selectedItems) {
            this.selectedItems = selectedItems;
        public List getSelectedItems() {
            return selectedItems;
         * Build a List of SelectItem instances to be used by an af:selectManyShuttle
         * @return A List containing SelectItems instances
        private List generateSelectItemsList() {
            List initialItems = new ArrayList();
            initialItems.add(new SelectItem(new Integer(11),"First Choice"));
            initialItems.add(new SelectItem(new Integer(22),"Second Choice"));
            initialItems.add(new SelectItem(new Integer(33),"Third Choice"));
            initialItems.add(new SelectItem(new Integer(44),"Fourth Choice"));
            return initialItems;
    }2. Configure the ShuttleBean class as a session scoped managed bean as in the following faces-config.xml file.
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
      <managed-bean>
        <managed-bean-name>ShuttleBean</managed-bean-name>
        <managed-bean-class>com.fmcna.adf.test.view.ShuttleBean</managed-bean-class>
        <managed-bean-scope>session</managed-bean-scope>
      </managed-bean>
      <application>
        <default-render-kit-id>oracle.adf.core</default-render-kit-id>
      </application>
    </faces-config>3. Create a JSP page containing an af:selectManyShuttle with a nested f:selectItems component. Wire the values for these components to the properties in the managed bean.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <f:view>
      <html>
        <head>
          <meta http-equiv="Content-Type"
                content="text/html; charset=windows-1252"/>
          <title>testShuttle</title>
        </head>
        <body><h:form>
            <af:selectManyShuttle value="#{ShuttleBean.selectedItems}" valuePassThru="true">
                <f:selectItems value="#{ShuttleBean.availableItems}"/>
            </af:selectManyShuttle>
            <af:commandLink text="Postback"/>
        </h:form></body>
      </html>
    </f:view>4. Run the JSP. Validate that the trailing list is initially empty.
    5. Shuttle one or more items to the trailing list and click the Postback button. Validate that when the page refreshes the trailing list is again empty.
    Thanks for any input you might be able to provide.
    Chris Mihalcik
    Edited by: user5384858 on Jun 14, 2010 1:06 PM

    I'm holding my Nano in my hot little hands with ALL of the things you listed, but here's the sad, simple truth: you CAN'T use iTunes to sync everything. It works well for:
    1) Music
    2) Videos (except sometimes in Vista)
    3) Photos (as long as they're not too large)
    but is terrible for:
    1) calendar
    2) contacts
    3) To-Do lists
    For the latter use something like "iGadget" (www.ipodsoft.com). I also edit/store notes w/iGadget plus it allows you to export files, etc.
    I gave up on syncing iTunes w/Outlook long ago. Good luck.

  • On windows 7 machine, safari fails to display web sites

    on windows 7 machine, safari fails to display web sites

    what happens is you type in the url and press enter then nothing.  the fix was to run "netsh winsock reset"
    If the winsock key reset helped things, that usually indicates trouble with a LSP. (That's also consistent with a 'silent" Safari page-load failure.) If you run into the problem again, perhaps try the following document:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • Chinese characters failed to display on songs in rip from my own CDs

    My old hard disk was dead and I lost some of the songs that I had on my computer.  So I tried ripping my own CDs into iTune.  Unfortunately, all the Chinese characters failed to display properly.  The songs in my old ipod showed those characters nicely and properly so I do not even have guts to sync my old ipod now. Did some research on the net and it said that I can try convert ID3 tags.  Sadly, the new iTunes no longer provide this function.  Went to apple support site and they need me to buy apple care plan!  I have a ipad still in the warranty period but I am extremely disappointed that iTunes, a software, also needs me to pay for support.  This has cast me shadow of having my 4th apple product.  I am using the latest iTunes version 12.0.1.26.  Help on support of local language is truly appreciated. 

    You wrote "with my last ipod update". Are we talking about syncing your iTunes to the iPod function of your iPhone? Because if not you might be in the wrong forum. If so, then you need to remember that there is no "drag and drop" functionality for transferring your music onto the iPhone. You must first create a playlist within iTunes (I called mine simply iPhone) and then tell the iPhone to sync that playlist to your phone when you connect it to your computer. As you are probably familiar with creating playlists within iTunes you know that you can then drag and drop whatever you'd like into one, including both purchased and imported music.
    Hope that helps.

  • Motion 3, DVD Studio Pro 3, Compressor...fail to display interface

    Macbook Pro C2D, Leopard OS X 10.5.1. All apps were running perfectly before this happened...
    First, all the apps of Final Cut Studio 2 crashed on startup.
    I recall that the last thing I did is trashing the newly installed trail version Aperture.
    After checking the crashing log, I found the problem comes from Prokit.framework. I did a thorough search, the answer is quite clear that the Prokit.framework comes with Aperture 1.5.2 is a PPC version, it replaced the intel version that was in my OS. So the solution is replacing the PPC version back to Prokit for Intel. Finally I found some provided download links of Prokit for Intel. BUT..
    All the Prokit online are extracted with Pacifist from either Tiger OS disc or ProAppRuntime4.0.2.pkg(from apple's website). So they are either version 3.1 or version 4.0.2. After replacing my Prokit.framework with version 4.0.2, all my FCS 2 apps except Final Cut Pro (but Log and Transfer inside FCP 6) stopped crashing but failed to display any interface. But the icons are in the dock.
    So finally I cleaned up all the files related to Final Cut Studio 2 and Prokit.framework and did a fresh reinstallation of FCS 2.
    Same thing! No interface at all.
    At this point, I doubt if the Prokit.framework in Leopard OS disc is different. It's too bad that I'm traveling for a project and my Leopard DVD is not in hand. So I asked a friend using Pacifist to extract Prokit.framework and Browser.framework from his Leopard DVD and sent them over. Now I found that they are indeed different. The one from Leopard is version 4.1. I did a replace again. Now, Motion 3, DVD Studio Pro 3 and Compressor start up, but with black windows and a few images, and the menu bars are really weird. I guess I should install this two framework with Pacifist instead of replacing them with the extracted folders?
    The last resort I guess is to reinstall Leopard? My dilemma if I don't finish my project, I have no access to my OS DVD, but I need to use FCS 2 to finish the project.
    Has anyone run into the same situation? Any enlightenment will be appreciated!

    I have just installed Leopard ans having problems with DDVDSPRO crasshing, can you please expand on how i may install prokit.framework and Browerkit frame work with Pacifist. I am not an expert please bear in mind!!
    many thanks

  • Job log - Failed to display result

    Hello,
    We have a problem displaying job logs, the message 'Failed to display result' appears when we try to display the log.
    The jobs have run last week.
    Any idea where I can have a look to find out what's going wrong?
    Thanks in advance,
    Kind regards,
    Ursula Delort
    SAP Administrator

    In fact, I just found out that we zip the job logs, and I just need to unzip them to be able to access the log.
    Ursula Delort

  • RAR Risk Analysis Issue in Background Mode - "Failed to Display Result"

    Hi,
    I have strange problem in RAR.
    When I run risk analysis for 20 users in background mode, the job got successful but the spool file is empty. But at the bottom of page there is a message:  "Failed to Display Result".
    The Job log is showing the following message couple of times:
    WARNING: ./virsa/bgJobSpool/19.i (No such file or directory)
    java.io.FileNotFoundException: ./virsa/bgJobSpool/19.i (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:129)
         at java.io.FileInputStream.<init>(FileInputStream.java:89)
         at java.io.FileReader.<init>(FileReader.java:62)
    But When I try to run for few users (like 6 memebrs where selection criteria is AUDIT*) in same way, the spool details got displayed this time. But the log is showing strange error messages this time:
    Nov 15, 2010 3:53:53 PM com.virsa.cc.common.util.ExceptionUtil logError
    SEVERE: null
    java.lang.NullPointerException
         at com.virsa.cc.comp.wdp.IPublicBackendAccessInterface$IAuthForUserInputElement.wdGetObject(IPublicBackendAccessInterface.java)
         at com.sap.tc.webdynpro.progmodel.context.NodeElement.getAttributeAsText(NodeElement.java:888)
    Nov 15, 2010 3:53:55 PM com.virsa.cc.dataextractor.bo.DataExtractorSAP getObjPermissions
    FINEST: getObjPermissions: elapsed time=1436ms
    Nov 15, 2010 3:53:55 PM com.virsa.cc.common.message.util.MessagingHelper getMessage
    INFO:
    ********msg: 'com.virsa.cc.common.message.dao.dto.MessageDTO@34d834d8'
    Any ideas please?

    Hi Alpesh,
    You are correct. The issue is due to multi node environment.
    But when I tried to define a custom spool folder path: usr/sap/<SID>/<Instance No>/log/virsa/bgJobSpool (in RAR - Miscellaneous - spool files location for background jobs) & run the risk analysis report in background mode, still RAR is saving the spool files in default location only.
    Can you suggest me if I am wrongly defining the location of folder?
    Should we define the complete location of the folder i.e starting with drive letter or path starting with user/* is sufficient?
    Regards,
    Dasarad

  • Firefox "loads" but fails to display.

    After updating Firefox, the browser loads (it shows up as running in Task Manager) but fails to display on screen. In other words, it is completely unusable. I've uninstalled & reinstalled the program, without favorable results.

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • Embedded PDF on web page fails to display

    We have a number of PDFs that are shown embedded in IE (versions vary).  This worked fine with Adobe Reader 9.5 but with 10, PDF fails to display. 
    Page takes a while to report error.  Error:
    There is a problem with Adobe Acrobat/Reader.  If it is running, please exit and try again.  (103:103)
    I found a few other discussion similar to this in the forum but didn't find a definitive root cause. 
    In our situation, we found that if the user launching the web page runs Adobe Reader as standalone first, the error doesn't happen. 
    While workaround exists, I am trying to understand the root cause to see if we can correct this for all the users in automated manner instead of
    mandating launching of Reader standalone as a prerequite step.  Quite a few users using this web app.
    Since launching of Reader standalone works, my guess is that some config/setup is done only after first use.  I see that, for example,
    reg keys are added under HKCU on first use.  I don't know why first use from browser differs from first use from standalone though.  Difference in
    reg access?  Enable/Disable browser plug-in produces different behavior so I don't think the setting is on the browser side.  What other factors
    may be in play here?
    All ideas welcome.  Thanks in advance.

    Got a couple follow up questions.  Postiing the response here.
    1.  Please send us step by step method on how to recreate the problem, and the URL of the PDF file that shows the issue.
    * Write a simple console application that does nothing but starting a browser. Browser URL set to any web site with embedded PDF. I believe I used a sample on Adobe's site for last test.
    2. Is everyone in your company experiencing the same issue?
    * Yes, everyone can be affected.
    3. Does the error show up on any PDF or just the embedded PDF?
    * Only embedded.
    4. Does the problem occur with Firefox?
    * Not browser specific.
    5. Do you have any other version of Reader or Acrobat installed on the same system?
    * No, clean test box. Tested with 10.0.0 first. Failed. Then cleaned up install and installed 10.1.3. Cannot repro with 9.5.
    Root cause appears to be Protected Mode. If I disable that, it works.

  • Flash site fails to display properly in internet explorer.

    I am having trouble finding out why
    http://websitemedia.net/playground/ferrioni/sandbox/
    fails to display properly in internet explorer ! The same site,
    http://websitemedia.net/playground/ferrioni/sandbox/,
    displays properly in firefox.
    I have checked & rechecked everything.
    What am i missing?
    BL

    It played fine at my side too.
    What version of flash you are using to create that swf?
    Make sure you have compatible version of flash player for
    your internet explorer.
    Try update your flash player to the latest version.

  • Brush just failed to display in CS5

    When any of the brush sizes reaches a certain limit the edges failed to display and you can't see the complete circle of the brush. This occurred after I checked to allow Open GL Drawing in the preferences but after I unchecked it the problem persisted. I updated my driver (NVidia GForce 6800) to no avail. The brushes have been displaying fine for the last year with the same driver. Any ideas would be appreciated.

    That sounds like an old nVidia display driver bug.
    Is there any possibility you took a Windows Update or something that ''updated'' your display driver to an older WHQL version?
    Perhaps completely removing the driver and getting the very latest one from nVidia.com might be in order.
    -Noel

  • Camera Raw CS5 fails to Display

    Camera Raw CS5 fails to display when I attempt to open a jpg in Camera Raw or any RAW format file. The Bridge locks up, and when I run the task manager in Windows 7 (64-bit) and force close the Bridge, an icon for Camera Raw shows up in the task manager window and says Camera Raw is Running.
    Thanks for any assistance.
    Bill

    Michi555555 I would recommend reviewing the installation log files for the Camera RAW update which is failing to apply.  You can find details on how to locate and interpret the installation log files at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.  You are welcome to post any specific errors to this discussion.

  • WHICH object failed to display?

    I'm experiencing a tough, frustrating problem. I've used a SVG turbulence filter to create nice-looking Gullies on a boardgame map. There are dozens of them, and Illustrator reported no problems when they were being drawn. After drawing, I verified that they looked good at 300dpi, then changed my resolution back to 18dpi so that Illustrator wouldn't slow down displaying them while I was working on other things.
    However, when I open the document, Illustrator gives me an error message to the effect of "An object failed to display". (Sorry, I don't have it in front of me - will get the exact error message later). All I can do is click OK. And immediately, the same error message pops up. Click OK. Same error message pops up. Dozens of times - I stopped counting when I hit 100.
    I want to find out what objects are causing the problem. I suspect it's one of those Gullies that use SVG filters, but that's all I have - suspicions.
    If anyone has tips on working with SVG turbulence filters, great, but what I really want to know is more basic - what do you people do when Illustrator reports a problem displaying an object, but it doesn't tell you which object? Particularly when there was no problem creating the object - it's not like I can say, "OK, that didn't work, try something else." Instead I'm saying, "Hmm. Something I did in my last drawing session is causing a problem. Now what?"
    I'm not complaining (although yeah, this is a ridiculous situation). I'll give you the particulars of my system (Latest Illustrator CC, Win 7 Pro, 8 GB RAM, nice fast new machine with an i5 processor, document is roughly 70K in size and has maybe 30 layers and hundreds of objects), although that's not relevant to the question - what do you experienced people do when you need to know what object Illustrator is complaining about?
    If I can't figure out which object (or set of objects) is causing the problem, I need to delete everything "suspicious" and start over. With no guarantee that it won't happen again. That's kinda... dumb.
    Thanks,
    Tom

    Hi rene,
    the error message is on the last screenshot.
    while trying to execute the process in runtime, i got the message:
    bsp callable object could not be executed
    it's quite a simple gp process with only one action item, and all the roles
    has been set to myself
    anything wrong here?
    jun

  • Flash site fails to display properly in firefox & ie.

    Greetings all,
    site below fails to display properly. When i visit the link
    below using firefox or ie6, i see it fine. but when anyone else
    visits it they see it with defects.
    defects include product text overlapping the fg&m logo,
    ferrioni home designs, inc header is cut off and only part of it
    displays, featured products headers is also cut off and only part
    of it displays.
    http://www.websitemedia.net/playground/ferrioni/sandbox/index.html.
    have tried the following.
    **made sure latest flash player is installed where customer
    fails to see the site display properly.
    **made sure latest ie and firefox browsers are installed
    where customer fails to see the site display properly.
    One important note, we are export flash movie using flash
    vesion 6.
    Need some insight on how to make sure everyone sees the site
    displayed properly.
    Thanks in advance
    BL

    This is just a wild guess but... Be sure that you have
    properly embedded any needed fonts for dynamic or input
    text.

Maybe you are looking for

  • Open new session in another language - Helpdesk tool!

    Hi, We have a lot of Chinese and Indian colleagues who ring up our German hotline with SAP problems. Normally we are signed on in German (which we understand!) but we would like to open a new session in English, without having to sign on again, so we

  • Horribly dim display suddenly happened

    I have only had this computer about 8 months now, and it has been very gently used (no falls, etc.)  This morning, all of a sudden the display is horribly dim - can hardly make out anything - and what makes it worse is that I have bad eyesight and ne

  • RE: Printing to Epson R1900 stylus fromCS3

    Seems simple- cannot figure out how to turn off color management in printer dialogue box so PS manages colors. Drop down menus are not what is shown in manual?! New printer, installed software and ICC profiles for photo papers. Am not getting good pr

  • Lion Mail hangs, cannot be started after first MacBook shut down...

    After installing Lion, Mail worked fine... Once, I shut down the computer, I have not been able to restart Mail in multiple attempts. Time and again, Mail is not responding and hangs consistently (see report below)... A Mail patch by Apple Computer i

  • Redirection of web pages

    Im not sure if my mac has a virus or settings have been changed, but every time i click on either a link or open a new page i get extra pages open with random spam stuff and the mac keeper pages keeps opening. my settings for the default search engin