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

前端 未结 12 1978
渐次进展
渐次进展 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条回答
  •  南笙
    南笙 (楼主)
    2020-12-04 07:02

    If trying to build phpredis on a Linux box you might need to give it time to complete modifying the file permissions, with a sleep command, before running the file:

    chmod a+x /usr/bin/php/scripts/phpize \
      && sleep 1 \
      && /usr/bin/php/scripts/phpize
    

提交回复
热议问题