Adam Hewitt <[EMAIL PROTECTED]> writes: > gambit:/tmp/install# ./install -prefix=/opt > Installation starting, please be patient ... > ./install: ./setup: No such file or directory > > Any ideas??
Check if it's dynamically linked elf $ file setup If it is, check if you have all the needed libraries. $ ldd setup Another common problem is with scripts where the #! line is wrong, but from memory you get a different error message. If the install program is a script, maybe put a pwd in just before it runs setup. If its a shell script, put a set -x up near the top to see what its doing. -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
