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

solution: linker hangs (was: provos and ho! (isakmpd))



* Nathan Binkert (binkertn@umich.edu) [001215 05:12]:
> Yes, but you probably still have libc.so.25.4 on your machine which is
> screwing things up.

I looked through my /usr/lib tree and found some stuff that was either too old
to be of the recent install from CD or too recent. I wanted to clean up in a
controled way and with this comand line I got a list of days in the past and
the files that where created at that day:

for i in `jot 100 0 | xargs`; do echo $i;  find /usr/lib/ -ctime $i; done | less

I got a long list and could easily see the days when stuff was added. 

I new which portions I wanted to remove (those with the libc.so.25.4 which I
had removed before!) and some older ones which were outdated.

The day number immediatly befor the list of files to be removed went into
another commandline (for example):

find /usr/lib/  -ctime 67 | xargs rm -r

That was when I installed 2.7 and those files were not needed any more. (I
hope!) (c: