[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ale] tpdualscan binary - newbie perplexed at compilation error



On 6 Aug 1999, hirsch at mathcs.emory.edu wrote:

>Try "locate libc.so" to find where your libc is stored.  (For this to work you
>either have to leave your computer on overnight at least once, or run 
>"/etc/cron.daily/updatedb.cron" once by hand.

or instead of getting complicated, you could use brute force:

find / -name libc.so -print

although I imagine that

find /lib /usr -name libc.so -print

or even

find /lib /usr/lib -name libc.so -print

might be considerably more efficient.... 

-- Glenn