![]() |
Couldn't find any suitable frontend - Printable Version +- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum) +-- Forum: Technical Support (https://www.frictionalgames.com/forum/forum-57.html) +--- Forum: Technical Support - Penumbra Series (https://www.frictionalgames.com/forum/forum-22.html) +---- Forum: Linux - Penumbra (https://www.frictionalgames.com/forum/forum-25.html) +---- Thread: Couldn't find any suitable frontend (/thread-1061.html) Pages:
1
2
|
Couldn't find any suitable frontend - hollandhards - 05-28-2007 i got a kubuntu 7.04 installation, on a x64 althon system. i'm realy confused why the installer wouldn't start. Code: Verifying archive integrity... All good. i do have a recent gcc version, libstdc++.so. versions are at my lib dir. btw; it's the demo, don't have full game anyone please? RE: Couldn't find any suitable frontend - Urkle - 05-28-2007 Make sure you have the 32-bit compatability libstdc++.so installed, as the installer IS 32 bit, as well as the game. hollandhards Wrote:i got a kubuntu 7.04 installation, on a x64 althon system. RE: Couldn't find any suitable frontend - hollandhards - 05-28-2007 i tried the linu32 wrapper Code: derk@derk-desktop:~/Desktop$ linux32 ./PenumbraOvertureDemo-1.0.1.sh RE: Couldn't find any suitable frontend - Urkle - 05-28-2007 The linux32 wrapper only "fakes" the reported CPU as an x86 instead of an x86_64 to any command run as it's arguments. The reason the installer would fail to find a frontend is if it can not find the 32 bit system libstdc++.so.6 . Make sure you have the 32-bit version of libstdc++ by locating yoru libstdc++.so.6 and running "file" on it. Code: $ find /usr/lib{,32,64} -name "libstdc*so.*" Make sure it says 32-bit!!.. if all of the libstdc++ files you have installed say 64-bit then you need to install the 32bit version. If it still failes run nohup sh -x ./PenumbraOvertureDemo-1.0.1.sh And attach the generated nohup.out to this thread. hollandhards Wrote:i tried the linu32 wrapper RE: Couldn't find any suitable frontend - MrWibble - 09-23-2007 I have this problem as well. Alas I am using Suse 9.2 64bit and I cannot seem to find a compatibility library. If I try and install the 32 bit version of libstdc++ I get faced with 'Dependency Hell' in Yast as every application installed is using the 32bit version. Urkle Wrote:The linux32 wrapper only "fakes" the reported CPU as an x86 instead of an x86_64 to any command run as it's arguments. RE: Couldn't find any suitable frontend - kweinert - 05-07-2010 So, I do have a 32 bit libstdc++.so.6, it's in /usr/lib32. Even if I set LD_LIBRARY_PATH=/usr/lib32 I still get the problem regarding the suitable frontend. There isn't any way that I can put a 32 bit version of the library into /usr/lib since that would totally mess up the remainder of my system. Thoughts? RE: Couldn't find any suitable frontend - Urkle - 05-07-2010 Which version are you installing kweinert?? is it the new Humble indie bundle? The installers for that contain both 32bit and 64bit installer binaries for GTK, fltk, and ncurses (text mode). And libs in /usr/lib32 are fine.. if you look at /etc/ld.so.conf (and maybe /etc/ld.so.conf.d/) /usr/lib32 is actually already added to the library path.. you may need to run Code: ldconfig NOTE the game itself is still ONLY 32bit. RE: Couldn't find any suitable frontend - kweinert - 05-07-2010 (05-07-2010, 02:55 PM)Urkle Wrote: Which version are you installing kweinert?? is it the new Humble indie bundle? The installers for that contain both 32bit and 64bit installer binaries for GTK, fltk, and ncurses (text mode). Yes, it's the Humble indie bundle. (05-07-2010, 02:55 PM)Urkle Wrote: And libs in /usr/lib32 are fine.. if you look at /etc/ld.so.conf (and maybe /etc/ld.so.conf.d/) /usr/lib32 is actually already added to the library path.. Still no joy. I did not have a reference to /usr/lib32 in any of the ldconfig areas, so I created /etc/ld.so.conf.d/lib32 and put it in there, ran ldconfig. Earlier in the thread someone was talking about libstdc++.so.6 which is in that directory. I'm not sure what other libraries you depend on, but I do have a lib32 version of GTK, but it's in a subdirectory of /usr/lib32 (/usr/lib32/libgtk2.0-0) I'm not entirely clear on this issue, but if you do need GTK for this program, will I need to add that specific subdirectory or will having the top level version include all the subdirectories? Thanks for you assistance. BTW: this is Ubuntu 10.04, obviously a 64 bit system. RE: Couldn't find any suitable frontend - Urkle - 05-07-2010 what exactly is the output/error you are receiving when you try and run the installer? Basically what the installer does is "check" each library combination for 64bit and 32bit to see what installer it can run. Now a nice "Fallback" (well not really nice nice.. but it works) is to use the ncurses installer which has no dependencies. DISPLAY= ./PenumbraOverture.sh it'll be in text mode but it should install regardless. RE: Couldn't find any suitable frontend - kweinert - 05-07-2010 Code: kenw@fortytwo:~$ DISPLAY= ./Downloads/penumbra_overture_1.1.sh That's as fas as it ever gets. It doesn't look like an installer ever starts up. |