On Wednesday 15 September 2010 15:59:29 Gholam Mostafa Faridi wrote: > On 09/15/2010 13:00, Edho P Arief wrote: > > sh install.sh > > I download all file and go to download directory and run that command , > for first time I do not see error and do not see messages , but when I > run that sh install.sh again I see this error > > "mfaridipc# sh install.sh > > ./usr/lib32/libc.so.7: Could not unlink > ./usr/lib32/libcrypt.so.5: Could not unlink > ./usr/lib32/librt.so.1: Could not unlink > ./usr/lib32/libthr.so.3: Could not unlink > ./libexec/ld-elf32.so.1: Could not unlink > tar: Error exit delayed from previous errors." > > and problem do not solve
These files have the schg flag set (see chflags(1)). This means the files are immutable. Try removing the schg flag first: # chflags noschg /usr/lib32/libc.so.7 - Pieter _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-emulation To unsubscribe, send any mail to "[email protected]"
