bad interpreter: Text file busy
The file you are attempting to access is used by another process. You need to kill the PID’s of that has that file in-use or open for writing.
lsof | grep -i <keyword of file>
[root@localhost exx]# lsof | grep -i nvidia
curl 5745 root 4w REG 8,3 7204864 41943147 /home/exx/NVIDIA-Linux-x86_64-515.48.07.run
curl 5785 root 4w REG 8,3 7204864 41943147 /home/exx/NVIDIA-Linux-x86_64-515.48.07.run
curl 5796 root 4w REG 8,3 7204864 41943147 /home/exx/NVIDIA-Linux-x86_64-515.48.07.run
curl 5839 root 4w REG 8,3 7204864 41943147 /home/exx/NVIDIA-Linux-x86_64-515.48.07.run
kill the processes
[root@localhost exx]# kill -9 5745 5785 5796 5839
[root@localhost exx]# lsof | grep -i nvidia
[root@localhost exx]#