bash: ./fam_mirror: bad interpreter: No such file or directory
Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If that says the file doesn't exist then the error is correct.
#!<file>
Is the start of a script, the file after the #! is the binary (executable) that interprets the script. You'll generally see either /usr/bin/sh or /usr/bin/bash or /usr/bin/perl
If you don't have perl you should install it. I'm surprised you don't though. try to type in:
which perl
If it finds anything, change the file after #! to point to the new one, or make a symmlink to /usr/bin/perl from whatever which found.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.