What generates the “text file busy” message in Unix?

This error means you are trying to modify an executable while it is executing. The “Text” here refers to the fact that the file being modified is the text segment for a running program. Use lsof to check what other processes are using it. You can use kill command to kill it if needed.

Leave a Comment