> If strace and ldd are of no help, there's one other trick I sometimes use > with prgressively more info to look through: > > strings <prog> | grep "^/" | less > strings <prog> | grep "/" | less > strings <prog> | less > > In the last one, typing the chars "/", "\", "/", Return tells less to > search for a "/", then just press "n" to keep finding the next one... > Shift+n to search backwards... > > With any luck, you may see some other file listed that the program can't > find...
That's it! 'strings <prog> | grep "^/" | less' shows some paths to the other components that don't make sense (absolute paths instead of relative), so of course those files can't be found! I'll just have to get the source and work with it. Thank you Pierre, and thank you all - kwan, Mike, Andrew, Ronald and Thomas. Best regards, Aleksey > > Good luck, > Pierre
Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
