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

前端 未结 12 1961
渐次进展
渐次进展 2020-12-04 06:38

What operation generates the error \"text file busy\"? I am unable to tell exactly.

I think it is related to the fact that I\'m creating a temporary python script (u

12条回答
  •  萌比男神i
    2020-12-04 07:09

    This error means some other process or user is accessing your file. Use lsof to check what other processes are using it. You can use kill command to kill it if needed.

提交回复
热议问题