On Tue, Jun 17, 2014 at 10:12:30AM +0200, Marcos Menendez wrote: > Hello, > > I remember to have done that step clearly but I have a look at it again: > Please do not top post, unless you have to - it makes understanding your reply very hard.
[ snip what is in /lib ] > > > Regarding libz.so, I run again the following to be sure: > > root:/sources/kmod-16# ln -sfv ../../lib/$(readlink /usr/lib/libz.so) > /usr/lib/libz.so > '/usr/lib/libz.so' -> '../../lib/../../lib/libz.so.1.2.8' > > I check it: > > root:/sources/kmod-16# ls -la /usr/lib/libz.so > lrwxrwxrwx 1 root root 33 Jun 17 10:51 /usr/lib/libz.so -> > ../../lib/../../lib/libz.so.1.2.8 > > > Here I see that it doesn't point to ../../lib/libz.so.1.2.8 as you mentioned > before but instead it points to ../../lib/../../lib/libz.so.1.2.8 which > doesn't look right to me... > > > I'm confused right now... > OK, it seems to be a "run once" command. I had not spotted that. What it is apparently supposed to do is take the target from the libz.so which was installed into /usr, and then remake the symlink but pointing to /lib. To fix it now, try ln -sfv ../../lib/libz.so.1.2.8 /usr/lib/libz.so and then run ls -l /usr/lib/libz.so to check that what I have suggested is correct. it should show this: lrwxrwxrwx 1 root root 23 May 19 15:41 /usr/lib/libz.so -> ../../lib/libz.so.1.2.8 ĸen -- Nanny Ogg usually went to bed early. After all, she was an old lady. Sometimes she went to bed as early as 6 a.m. -- http://lists.linuxfromscratch.org/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
