Help!...... epsxe cant find libstdc++6....

when i run epsxe it  opens normally but it crashes when i try to configure video or sound, this is the error i get..
libstdc++-libc6.2-2.so.3: cannot open shared object file: No such file or directory
any help???

Maybe link your libc6 to the needed filename:
ln -s /lib/libc.so.6 /lib/libc6.2-2.so.3 ...
I currently have no archlinux available, so I am in doubt if the filename 'libc.so.6" is correct. I am more in doubt if libc.so.6 IS the same as libc6.2-2.so.3 - but I had similar issues with old loki games ...

Similar Messages

  • 3gs no service after updating to ios 5 tried network reset, reset all settings and even restoring from back been with out phone for 3 weeks now need help telus cant find network problem and apple has bad customer support please help!!!

    my 3gs has no service after updating from ios 5 tried resetting network settings, resetting all settings and restoring from back up on itunes.
    telus cant find any network problems and apple is difficult to deal with.please help 3 weeks with no phone and $70 a month not happy.

    I have been having a similar problem for the last few days.Without warning the signal will just completely duck out leaving the device searching for several minutes before settling on a no signal message.
    Sometimes restarting the device, toggling data and 3g settings or toggling Airplane Mode will set things right. However, a lot of the time I've been left without a working phone.
    I don't believe this is a SIM issue, as I had to change my SIM only one month ago for another signal related problem. Again any help would be appreciated here as well.

  • Serial number help.  Cant find case with the number.

    Need to install on new computer.  Cant find the original case = no serial number.  The product code is [removed].  Adobe Photoshop CS5 Extended.  Student and Teacher Edition

    Check your Adobe account where?
    We do have CS6, no serial number, wasn't given by the Apple dealer who installes CS6. We want to upgrade to CC. Do all ready have a team. What to do now?
    thanks for your answer!

  • Ezdrummer - help I cant find it

    I have recently bought ez-drummer, The installation was successfull,
    I have had Logic Pro 7 for a while now but I am still finding my way round,
    I have created my instrument track, Then I look through the I/0 to find it but its not there,
    I have also looked through the inserts but its not there,
    Can anybody help,
    Thanks in advance.

    gr3gf1tch wrote:
    I have recently bought ez-drummer, The installation was successfull,
    I have had Logic Pro 7 for a while now but I am still finding my way round,
    I have created my instrument track, Then I look through the I/0 to find it but its not there,
    I have also looked through the inserts but its not there,
    Can anybody help,
    Thanks in advance.
    G5 Mac OS X (10.0. x)
    Hi,
    Firstly, are you sure the installation of EZ drummer included an Audio Unit plug-in version?
    Secondly, Logic Pro 7, is compatible with only Mac os 10.3 and later.
    from this website:
    http://www.apple.com/support/downloads/logicproupdate.html
    System Requirements
    Mac OS X 10.3 or later
    Sinnce you are running a OLD version of Mac Os ( you state 10.0.x) then my suggestion to you is to update your Os first. then check with the maker of EZdrummer, and see what the correct version of their plu-in will be for your machine and OS.
    There recently were many many many threads about how Apple Os's have been updating Logic's Audio Unit validation tool utility, and therefore rendering some plug-ins unusable. That is most probably what is happening here.
    Cheers

  • Help!, cant find method

    Dear all,
    I cant figure out what the problem is, if anyone has any clues I would be eternally grateful :P
    //http://www.dickbaldwin.com/java/Java028.htm
    //http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html
    //http://en.wiktionary.org/wiki/Wiktionary:English_inflection
    //http://java.sun.com/developer/J2METechTips/2002/tt0131.html
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    import javax.microedition.io.*;
    public class HoroscopesMidlet2 extends MIDlet implements
    CommandListener {
    private Display display;
    private Command exit;
    private Command enter;
    public TextField month;
    public TextField day;
    private Form form;
    //star sign variables
    int beginDay;
    int beginMonth;
    String name;
    // returns horoscope name
    public String getName() {  return name; }
    public HoroscopesMidlet2(int bd, int bm, String nm) {
         //star sign variable assignments
         beginDay = bd;
    beginMonth = bm;
    name = nm;
    //month = new TextField ("Month","",10,TextField.NUMERIC);
    //day = new TextField ("Day","",10,TextField.NUMERIC);
    form = new Form ("Horoscopes");
    exit = new Command ("Exit", Command.CANCEL,2);
    enter = new Command ("Enter", Command.OK,2);
    public void startApp() {
    display = Display.getDisplay(this);
    form.append(month);
    form.append(day);
    form.addCommand(exit);
    form.addCommand(enter);
    form.setCommandListener(this);
    display.setCurrent(form);
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
    notifyDestroyed();
    class Horoscope {
    HoroscopesMidlet2[] signs;
    public Horoscope() {
    signs = new HoroscopesMidlet2[12];
    signs[0] = new HoroscopesMidlet2(22, 12, "Capricorn");
    signs[1] = new HoroscopesMidlet2(21, 1, "Aquarius");
    signs[2] = new HoroscopesMidlet2(20, 2, "Pisces");
    signs[3] = new HoroscopesMidlet2(21, 3, "Aries");
    signs[4] = new HoroscopesMidlet2(21, 4, "Taurus");
    signs[5] = new HoroscopesMidlet2(22, 5, "Gemini");
    signs[6] = new HoroscopesMidlet2(22, 6, "Cancer");
    signs[7] = new HoroscopesMidlet2(24, 7, "Leo");
    signs[8] = new HoroscopesMidlet2(24, 8, "Virgo");
    signs[9] = new HoroscopesMidlet2(24, 9, "Libra");
    signs[10] = new HoroscopesMidlet2(24, 10, "Scorpio");
    signs[11] = new HoroscopesMidlet2(23, 11, "Sagitarius");
    HoroscopesMidlet2 findSign(int day, int mth) {
    if (mth < 1 || mth > 12)
    return null;
    if (mth == 12) {
    if (day >= signs[0].beginDay && day < 32)
    return signs[0];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[11];
    if (mth == 1) {
    if (day >= signs[1].beginDay && day < 32)
    return signs[1];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[0];
    if (mth == 2) {
    if (day >= signs[2].beginDay && day < 29 )
    return signs[2];
    else
    if (day > 28 || day < 1 )
    return null;
    else
    return signs[1];
    if (mth == 3) {
    if (day >= signs[3].beginDay && day < 32)
    return signs[3];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[2];
    if (mth == 4) {
    if (day >= signs[4].beginDay && day < 31)
    return signs[4];
    else
    if (day > 30 || day < 1 )
    return null;
    else
    return signs[3];
    if (mth == 5) {
    if (day >= signs[5].beginDay && day < 32)
    return signs[5];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[4];
    if (mth == 6) {
    if (day >= signs[6].beginDay && day < 31)
    return signs[6];
    else
    if (day > 30 || day < 1 )
    return null;
    else
    return signs[5];
    if (mth == 7) {
    if (day >= signs[7].beginDay && day < 32)
    return signs[7];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[6];
    if (mth == 8) {
    if (day >= signs[8].beginDay && day < 32)
    return signs[8];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[7];
    if (mth == 9) {
    if (day >= signs[9].beginDay && day < 31)
    return signs[9];
    else
    if (day > 30 || day < 1 )
    return null;
    else
    return signs[8];
    if (mth == 10) {
    if (day >= signs[10].beginDay && day < 32)
    return signs[10];
    else
    if (day > 31 || day < 1 )
    return null;
    else
    return signs[9];
    if (mth == 11) {
    if (day >= signs[11].beginDay && day < 31)
    return signs[11];
    else
    if (day > 30 || day < 1)
    return null;
    else
    return signs[10];
    } else {
    tryAgain();
    return null;
    public void tryAgain() {
    Alert error = new Alert("Date Incorrect", "Please try again", null,
    AlertType.ERROR);
    error.setTimeout(Alert.FOREVER);
    month.setString("");
    day.setString("");
    display.setCurrent(error, form);
    public void commandAction(Command c, Displayable d) {
    String label = c.getLabel();
    if(label.equals("Exit")) {
    destroyApp(true);
    } else if (label.equals("Enter")) {
    int mm = Integer.parseInt(month.getString());
    int dd = Integer.parseInt(day.getString());
    HoroscopesMidlet2 hscp = findSign(mm, dd);
    }

    int mm = Integer.parseInt(month.getString());
                   int dd = Integer.parseInt(day.getString());Can you catch the NumberFormatException for this?
    Can you print a stackTrace?
    try{
         //problem code
    }catch(Exception e){
         e.printStackTrace();
    }

  • Help I cant find my folder!!!

    OK, this is just someting thats been bugging me for a few years (not enough I suppose).
    But in the old days.... (system 7.5 ish) there was an option somewhere within to remember last folder used.
    Example I have 10 jpegs on my desktop, I open them all in ps work on them and save them back to a clientA folder sitting in documents, after I have saved the first jpeg to clientA, I'd assume the next jpeg i work on and save as would default to the clientA folder without me having to locate it again and again for all 10 files.
    In Quark of old there was a tick box remember last folder or something to that effect.
    Help me out here I waste a lot of time, locating folders.
    I'm running leopard and cs4

    gary,
    By the way, you should NEVER work directly on .jpgs without first saving them in a non-lossy format. Convert them to .psd or .tif. Work on those as much as you wish, then save and keep them as .psd or .tif. Then, if you must have the .jpg format (for, say, a Website or email)
    save a copy as a .jpg.
    Every time you open --> edit --> save --> open a .jpg, you are replacing some of the data with garbage (artifacts). Higher quality .jpgs have fewer artifacts and they may not be initially visible. But why corrupt your good images?
    Neil

  • I updated my iphone 4s to iOS7 almost 2 weeks from now and i lost my phone's wifi.. the button has greyed out..what will i do?please help me :( cant find an apple store near us

    I updated my iphone 4s to iOS7 almost 2 weeks from now and my wifi is greyed out..what will i do? there's no apple store near us too.

    Try the suggestions here to see if they resolve your problem:
    http://support.apple.com/kb/ts1559
    If these don't work you may have a hardware problem. Visit an Apple store for an evaluation or contact Apple Support.

  • I was running fine when i got a message that firefox upgrade failed now my home page message is try again later. Manual update says to go to help i cant find that screen what should i do?

    Firefox home page no longer comes up. it just says try again later. It started after failed auto update. Should I try manual update or reload firefox directions for doing manual update not clear on which screen to start at.

    Do you have any other drive connected, which has a copy of FCP X?
    I would make a copy of the application in some drive, just in case; then disconnect the drive, delete the application (could use FCS Remover to delete everything related).
    Then, try installing from the purchases tab in the App Store.

  • My ipod touch 4g isnt letting me download apps now whenever i try to it says cannot connect to itunes, i cant find anything that works, i logged out of my apple account and tried to log back in but it wont let me! Can anyone help me

    My ipod touch 4g isnt letting me download apps now whenever i try to it says cannot connect to itunes, i cant find anything that works, i logged out of my apple account and tried to log back in but it wont let me! Can anyone help me

    Likely Apple problem
    iTunes Store - 20% of users are affected
    Users are unable to make purchases.
    http://www.apple.com/support/systemstatus/

  • I was doing some thing on my mac and the normal link to the applications folder from the bottom right hand corner disappeared, I cant find it anywhere, Can you help me?

    I was doing some thing on my mac and the normal link to the applications folder from the bottom right hand corner disappeared, I cant find it anywhere, Can you help me?

    Simple process. If an iPhone go to the Apple Store and not Verizon
    the phone from Verizon will be a refurbished device and not new unless under the 14 day worry free guarantee
    good luck

  • I have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me

    i have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me???

    If Join was on then your home wi-fi must be set to Non-Broadcast.  If you did not set this up (maybe your provider did) then you will need to find the Network Name they used, and any password they used.  The SSID is Security Set ID and to see more try http://en.wikipedia.org/wiki/SSID .  Basically it is the name used to identify your router/network.  A lot of times the installer will leave it set as LinkSys, or Broadcom or whatever the manufacturer set it as for default.  Your best bet is to get whoever installed it to walk you through how they set it up, giving you id's and passwords so you can get in.  HOWEVER, if you are not comfortable with this (if you set security wrong, etc.) you would be well ahead of the game to hire a local computer tech (networking) to get this working for you.  You can also contact the vendor of your router and get help (if it is still in warranty), or at least get copies of the manuals as pdf files.  Sorry I can't give you more help, I hope this gives you an idea where to go from here to find more.

  • Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Hi! I need help, today I connected my mac Book Air to a tv for a presentation and as soon as I conected it the image on my screen went bigger. And I cant find the way to put it back as it was before. The Images are too big! heelp

    Morning DeeHutton,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Best of luck,
    Mario

  • HT201472 can you guys please help me find my ipod because i lost it a week ago and i cant find it i've been trying really hard to find it but i cant cause i didn't set up find my phone before i lost it so my question is can you help me someway here my

    can you guys please help me find my iPod because i lost it a week ago and i cant find it I've been trying really hard to find it but i cant cause i didn't set up find my phone before i lost it so my question is can you help me someway  or somehow because my iPod i love it i would always take pictures with my friends and i have all my memories in it so i don't know where it is for all i know it could be on the street getting ready to get ran over because the last time i ever saw it was on last Sunday when i went to my cousins house when we were leaving i grabbed something to eat then i sat at the table then i left but i swear i had it in my pocket when i left but i didn't so i asked my cousin if he could look for it and he said sure so he started looking for it but didn't find anything and so i lost it sense and i asked my dad if i could get a new one and he said in a couple of years but i want that iPod back it has all my memories in it it's really special to me and i'm really desperate so please help me someway somehow anyway just help me please i don't know what else to do but beg for someone to help me because I've tried looking for it in my car in my room in my coats and nothing i tried looking for it on the website find my iPhone/iPod/iPad and it didn't help so please help me i beg of you if you are reading this and don't care you really are heartless because a little 12 year old girl can't find the most precious thing she got from her father 1 year ago and if you are reading this and you have a heart please help me find it if you do want to help me find it****
    <Personal Information Edited by Host>

    You are not addressing Apple here. We are all just users like yourself
    lost/stolen                                     
    No app on the iOS device is required.                           
    - If you previously turned on FIndMyiPod/iPhone/iPad on the iOS device in Settings>iCloud and wifi is on and connected or cellular data is on and connected for, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up or continue to show off-line.
    - You can also wipe/erase the iOS device and have the device play a sound via iCloud.
    iCloud: Erase your device
    iCloud: Use Lost Mode
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the device and report to police and carrier if iPhone or cellular iPad
    - There is no way to prevent someone from restoring the erase (it erases it) using it unless you had iOS 7 or later on the device. With iOS 7 or later, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                               
    Reporting a lost or stolen Apple product                                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • TS1363 my ipod classic is visible in windows but not in itunes, this happens on 2 different computers where my iphone and ipod touch work fine which leads me to think something is up with the ipod itself and i cant find any threads to help

    my ipod classic is visible in windows but not in itunes, this happens on 2 different computers where my iphone and ipod touch work fine which leads me to think something is up with the ipod itself and i cant find any threads to help.
    any thoughts anyone??

    Perhaps the reason you haven't had any replies is because there is no such thing as an 8GB iPod Classic.
    I suggest that you begin by correctly identifying which iPod you have.
    http://support.apple.com/kb/HT1353

  • My iphone 5 is not syncing with my laptop and windows 8. cant find an itunes app for my laptop. is there something i can get that will help with this

    My iphone 5 is not syncing with my laptop and windows 8. cant find an itunes app for my laptop. is there something i can get that will help with this?

    Lbo51380 wrote:
    cant find an itunes app for my laptop. is there something i can get that will help with this?
    Go here -> http://www.apple.com/itunes/download/

Maybe you are looking for

  • How Do I Share iTunes with 2 Macs?

    Here is my setup: iMac G5 & Macbook AEBSn with a 500GB LaCie drive hooked up I have always had my iTunes on my iMac, but now that I have a Macbook I would like to share the library between the two. Basically making the library editable by both comput

  • Cannot print in Adobe 9 it will only print to file which does not work

    I cannot print a PDF file that is in Adobe 9.  It is not the file, I opened several other files and they all do the same thing.  INstead of printing.  When I click OK after choosing the printer, it goes into a print to file mode.  The print to file a

  • Oracle DB server and Reports&Forms Services - in separate homes

    Hi I have manaed to installe Oracle DB server (10g) in home1 and reports & forms services (together with Developer suite, 9.0.4) in home2 - can I work normally with that installation/configuration. What is normal practice?

  • High Contrast Mode (VERY URGENT)

    (VERY URGENT...) Hi all .... I am developing a Java-Swing based application in Win2K and I need to find out whether the user has switched to the high contrast mode on the fly .... Is there any method that can be called to test the high contrast mode

  • Where is the excite 13 for the US

    surprised this isnt available yet? any idea when it will be sold in the US/ Cant even source it from Canada!!!