This is a new one for me: What does this error indicate?

  /usr/bin/perl: bad interpreter: Text file busy

There were a couple of disk-intensive processes running at the time, but I've never seen that message before—in fact, this is the first time that I can remember getting an error when trying to run a Perl script. After a few seconds of waiting, I was able to run it, and haven't seen the issue since, but it would be nice to have an explanation for this.

Running Ubuntu 9.04, file system is ext3.

link|improve this question

58% accept rate
feedback

3 Answers

up vote 6 down vote accepted

I'd guess you encountered this issue.

The Linux kernel will generate a bad interpreter: Text file busy error if your Perl script (or any other kind of script) is open for writing when you try to execute it.

You don't say what the disk-intensive processes were doing. Is it possible one of them had the script open for read+write access (even if it wasn't actually writing anything)?

link|improve this answer
That sounds reasonable - I was working on the script, and this happened just as I saved it and then tried running it. – chris Sep 6 '09 at 15:47
2  
So probably the "disk-intensive process" didn't do anything to your script directly, but it kept the disk busy enough that your stalled while writing out the script and kept it open for several seconds. – hobbs Sep 6 '09 at 22:21
That's what I'm thinking - it seems to make sense in any case. – chris Sep 8 '09 at 21:21
Sorry, I know you understood what I meant, but typos bug me. I meant "your editor" above of course :) – hobbs Sep 10 '09 at 6:07
This can mean that either the script is being written to, or that the interpreter itself is being written to -- the same error happens in either case. – Charles Duffy May 17 at 15:33
feedback

This always has to do with the perl interpreter (/usr/bin/perl) being inaccessible. In fact, it happens when a shell script is running or awk or whatever is on the #! line at the top of the script.

The cause can be many things ... perms, locked file, filesystem offline, and on and on.

It would obviously depend on what was happening at the exact moment you ran it when the problem occured. But I hope the answer is what you were looking for.

link|improve this answer
The error message "text file busy" has a specific meaning, and wouldn't be caused by any of the issues you mentioned. – duskwuff Sep 5 '09 at 23:10
1  
@duskwuff, care to elaborate? Can you share your wisdom with the rest of us? (btw, my research says exactly what I was sharing). – Rap Sep 5 '09 at 23:32
@duskwuff the specific meaning is exactly what this answer describes. Try it yourself -- open /usr/bin/perl for append, and try to run a perl script. Yes, "text file" is a little misleading, but that's what the error has been standardized as for decades. – Charles Duffy May 17 at 15:30
feedback

Maybe perl was being upgraded when you tried to run those scripts? Or maybe the scripts were on an unavailable filesystem? Does it still happen or was a one time thing?

link|improve this answer
It was a one-time thing. I suspect it was related to disk activity, but I'd like to know what's going on. – chris Sep 5 '09 at 22:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.