LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   installing .tar.gz software (https://www.linuxquestions.org/questions/linux-newbie-8/installing-tar-gz-software-815699/)

vkr0704 06-22-2010 11:22 AM

installing .tar.gz software
 
Hello I am installing one software (pwDesktop [http://home.pw/desktop/])

I am using ubuntu 10.04

I am following these stapes

$tar -xzvf pwDesktop-release.tar.gz
then
$./configure
but it saying there is no such file or directory

smeezekitty 06-22-2010 11:25 AM

Code:

cd pwDesktop-release
./configure
make


snowday 06-22-2010 11:26 AM

Look for a README or similar file with instructions.

tar.gz is simply an archive format (like .zip for windows); anything could be inside of it, and you need to follow the specific instructions within.

vkr0704 06-22-2010 11:33 AM

1 Attachment(s)
Quote:

Originally Posted by snowpine (Post 4011572)
Look for a README or similar file with instructions.

tar.gz is simply an archive format (like .zip for windows); anything could be inside of it, and you need to follow the specific instructions within.

there are some file files & folders

folders (installer,modules,Resources,runtime)
files (EULA.rtf,manifest,pwDesktop,tiapp.xml)

Please check attached screen shot

vkr0704 06-22-2010 11:35 AM

Quote:

Originally Posted by smeezekitty (Post 4011571)
Code:

cd pwDesktop-release
./configure
make


ya i done this but there is no such configure file

knudfl 06-22-2010 11:48 AM

It is an installer ? ... the commands are :

cd pwDesktop/

./pwDesktop

.....

vkr0704 06-22-2010 12:17 PM

Quote:

Originally Posted by knudfl (Post 4011596)
It is an installer ? ... the commands are :

cd pwDesktop/

./pwDesktop

.....

got this error

./pwDesktop: /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by ./pwDesktop)

knudfl 06-22-2010 02:42 PM

GLIBCXX_3.4.11 : Yes, that's an object in LIB_CXX → libstdc++.

The command : sudo apt-get install libstdc++6
.. will install the library.

But I get this error, when I start the application :
" ./pwDesktop: symbol lookup error:
/usr/lib/libgtk-x11-2.0.so.0: undefined symbol: g_malloc_n "

I will be back with an answer, when / if I find out,
why pwDesktop fails on Ubuntu 10.04 and other new Linux.
..

knudfl 06-22-2010 04:41 PM

The executable 'pwDesktop' will start on a Linux with "libicu40"
(libicu-4.0.x), gtk2 versions 2.16.1 .. 2.18.5 ?
(and a libstdc++ from gcc-4.4.x).
EDIT : Has a 'runtime/' folder with libraries, that differs
from the versions, the executable asks for.
Will check later, if it uses those.

Example : Ubuntu 9.10 ( Starts, but errors with lang=da,
but may work with some other languages.)

'pwDesktop' may have been tailored for Ubuntu 9.10 only ?
I can't find any other Linux with that very specific
library combination. EDIT : Fedora 11 fits, see # 11.

And I also found no source code for 'pwDesktop'.
..

vkr0704 06-23-2010 05:11 AM

Quote:

Originally Posted by knudfl (Post 4011806)
GLIBCXX_3.4.11 : Yes, that's an object in LIB_CXX → libstdc++.

The command : sudo apt-get install libstdc++6
.. will install the library.

But I get this error, when I start the application :
" ./pwDesktop: symbol lookup error:
/usr/lib/libgtk-x11-2.0.so.0: undefined symbol: g_malloc_n "

I will be back with an answer, when / if I find out,
why pwDesktop fails on Ubuntu 10.04 and other new Linux.
..

ya i also got this error in ubuntu 10.04
then i google it, i have found many forum,article on this
but not found any specific solution :(

knudfl 06-23-2010 09:35 AM

1 Attachment(s)
Works in my old install, PCLinuxOS2009.2 :
symlink libicu40 files from OpenOffice version 3.2
to pwDesktop/runtime/ (libicuio, libicuuc), then OK.

Yes, some luck : pwDesktop/runtime/ is first in the
search path for the executable 'pwDesktop'.

OK out of the box in Fedora 11 with lang=en_us
( Was rejected yesterday with lang=da.)

I am not sure of Ubuntu 10.04, is complicated to do.

vkr0704 06-25-2010 10:52 AM

Quote:

Originally Posted by knudfl (Post 4012671)
Works in my old install, PCLinuxOS2009.2 :
symlink libicu40 files from OpenOffice version 3.2
to pwDesktop/runtime/ (libicuio, libicuuc), then OK.

Yes, some luck : pwDesktop/runtime/ is first in the
search path for the executable 'pwDesktop'.

OK out of the box in Fedora 11 with lang=en_us
( Was rejected yesterday with lang=da.)

I am not sure of Ubuntu 10.04, is complicated to do.

ohhh
it's very complicated.
but thank you very much for helping me

MTK358 06-25-2010 08:14 PM

It has a EULA -> it's probably not open-source -> the source is probably a secret -> the package does not contain the source, unlike most .tar.gz software -> the standard "./configure && make && make install" won't work, because what is does is compile source code.


All times are GMT -5. The time now is 09:05 AM.