/bin/bash: bad interpreter: Text file busy Error and Solution

by on January 6, 2009 · 6 comments· last updated at January 6, 2009

Q. I'm getting an error as follows while trying to run a shell script over remote ssh session:

./myscript.sh
/bin/bash: bad interpreter: Text file busy

How do I fix this error message and run the script?

A. This error means some other process or user is accessing your file. Your script file is open and hence bash giving out this error.

To list open file use lsof command, enter:
# lsof | grep myscript.sh
Sample output:

cat       4995      root    1w      REG                8,2     1374   28409914 /home/vivek/myscript.sh
cat       5031      root    1w      REG                8,2     1374   28409914 /home/vivek/myscript.sh
cat       5069      root    1w      REG                8,2     1374   28409914 /home/vivek/myscript.sh

You can wait or simply kill those process with kill command:
# kill 4995 5031 5069
Now, try to run script again:
# ./myscript.sh



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 6 comments… read them below or add one }

1 richard January 7, 2009 at 9:05 am

I had type this command :
pkill myscript.sh

but if you want use lsof the -t option show only the PID :
kill `lsof -t myscript.sh`

Reply

2 Vivek Gite January 7, 2009 at 9:09 am

Richard,

Thanks for pointing out -t option.

Reply

3 richard January 7, 2009 at 9:11 am

Sorry,

for pkill command I forgot the option -f :
pkill -f myscript.sh

Reply

4 David Sharnoff December 15, 2009 at 11:58 pm

How about a real solution: allow interpreters to run files that are open and locked! This (recent) kernel change sucks.

Reply

5 Deepti June 28, 2011 at 11:41 am

My problem occurred coz I transferred the script from a windows machine to linux. Once I converted it to unix compatible file (using dos2unix command) the problem went away

Reply

6 marco September 2, 2012 at 4:20 pm

in my case he throws that error after writing a lot of entries to a log file using phps error_log()

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as: , , , , , , ,

Previous Faq:

Next Faq: