vote up 4 vote down star

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.

flag

44% accept rate
1  
Tried Google? google.com/search?q=%2Fusr%2Fbin%2Fperl%3A+bad+in… – Chris Lutz Sep 5 at 22:27
See also SF: serverfault.com/questions/21561/… – Ether Sep 7 at 15:33

3 Answers

vote up 3 vote down check

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|flag
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 at 15:47
1  
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 at 22:21
That's what I'm thinking - it seems to make sense in any case. – chris Sep 8 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 at 6:07
vote up 0 vote down

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|flag
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 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 at 23:32
vote up 0 vote down

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|flag
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 at 22:36

Your Answer

Get an OpenID
or

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