老卫同学
发布于 2024-05-24 / 160 阅读
0
0

在Linux中运行程序出现:Text file busy

问题:

nohup: failed to run command './gin-admin': Text file busy

解决:

Linux系统下执行程序出现Text file busy错误提示的解决方法

Linux Text file busy(文本文件忙),发生此错误是因为当前文件已被占用,因此只要找出占用该文件的进程并杀死就可以了。

执行步骤:

找出占用该文件的进程

注意: 此步需要进到文件所在目录,或将文件路径写全

fuser gin-admin

杀死占用该文件的进程PID

kill 27384


评论