Problems with ubuntu
Posted: 03 March 2009 06:48 AM   [ Ignore ]
Avatar
Rank
Joined  2008-10-20
Total Posts:  21
New Member

Im having problems to run tbeta.

Nothing happen?????

fdox@xiloa:~/tbeta/tbeta
fdox@xiloa:~/tbeta/tbetasudo cp /usr/lib/libPocoFoundation.so.5 /usr/lib/libPocoFoundation.so.2 
cp
cannot stat `/usr/lib/libPocoFoundation.so.5': No such file or directory
fdox@xiloa:~/tbeta/tbeta$ sudo cp /usr/lib/libPocoUtil.so.5 /usr/lib/libPocoUtil.so.2
cp: cannot stat 
`/usr/lib/libPocoUtil.so.5No such file or directory

Any idea why?

F/

 Signature 

http://1scale1.com/

Profile
 
 
Posted: 03 March 2009 09:09 AM   [ Ignore ]   [ # 1 ]
Rank
Joined  2008-12-09
Total Posts:  84
New Member

You need to symlink the libraries after installing the libpocofoundation5 and libpocoutil5 packages.
Rather than copying them symlink them like sudo ln -s /usr/lib/libPocoFoundation.so.5 /usr/lib/libPocoFoundation.so.2

 Signature 

My Build Blog : http://mtblog.iamhigham.com

Profile
 
 
Posted: 09 March 2009 06:55 AM   [ Ignore ]   [ # 2 ]
Rank
Joined  2009-01-12
Total Posts:  15
New Member
danhigham - 03 March 2009 09:09 AM

You need to symlink the libraries after installing the libpocofoundation5 and libpocoutil5 packages.
Rather than copying them symlink them like sudo ln -s /usr/lib/libPocoFoundation.so.5 /usr/lib/libPocoFoundation.so.2

You also need to do the same thing with libPocoUtil.so.5:
>$sudo ln -s /usr/lib/libPocoUtil.so.5 /usr/lib/libPocoUtil.so.2

Afteccr that,
>$sh Launch\ tbeta.sh
worked just fine.

This is, of course, after you’ve met the requirement of having libpoco installed:
>$sudo aptitude install libpoco?
installs everything libpoco… I’m not clear if you need all of them but what the heck.

Advice without warranty, I’m quite a newbie, actually smile
Cheers,
Martin

Profile
 
 
Posted: 09 March 2009 07:53 AM   [ Ignore ]   [ # 3 ]
Rank
Joined  2008-12-09
Total Posts:  84
New Member

Forgot about that! Agreed.

 Signature 

My Build Blog : http://mtblog.iamhigham.com

Profile
 
 
Posted: 09 March 2009 08:31 AM   [ Ignore ]   [ # 4 ]
Rank
Joined  2009-01-12
Total Posts:  15
New Member

Ah, btw, a more thorough search would have revealed this:

http://nuigroup.com/forums/viewthread/3897/

There, it also tells which of the many libpoco packages are needed.

Profile