/usr/bin/perl: bad interpreter: No such file or di

在fedora中第一次安装vm tools时遇到了这个题,现将我的解决方法与大家分享,希望能对大家有所帮助!

问题:解压完vm tools的压缩包之后,我就在root权限下执行./vmware-install.pl,结果报错/usr/bin/perl: bad interpreter: No such file or directory,解决如下:

1.查看版本号:uname -r得到内核版本,yum install 获取的内核版本 然后再yum install gcc

2.下面到vmware-tools-distrib目录下,执行./vmware-install.pl,在之后的不就就是一路回车了,直到enjoy,此时万事ok!

时间: 2024-09-29 18:35:21

/usr/bin/perl: bad interpreter: No such file or di的相关文章

-bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No such file

安装完成后,初始化数据库报错如下: [[email protected] mysql]# ./scripts/mysql_install_db  --user=mysql -bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No such file or directory 貌似提示注释器错误,没有/usr/bin/perl文件或者档案,解决办法(安装perl跟perl-devel即可): 执行  yum -y i

/usr/bin/perl:bad interpreter:No such file or directory 的解决办法

yum -y install gcc gcc-c++ perl make kernel-headers kernel-devel 参考: https://blog.csdn.net/Hello_World_QWP/article/details/82624715 原文地址:https://www.cnblogs.com/sea-stream/p/10387794.html

mysql_install_db: /usr/bin/perl: bad interpreter:

centos 7安装mysql报错-bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No such file or directory [[email protected] mysql]# ./scripts/mysql_install_db  --user=mysql -bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: No su

/usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory

问题:当你执行yum 命令时提示如下错误:/usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory解决方法:上面的提示说明yum脚本没有找到python命令.只要找到python命令的路径,然后建立个软链接即可.如:sudo ln -s /usr/bin/python2.4 /usr/bin/pythonps:yum命令是用python脚本写的.打开yum脚本,你可以看到. /usr/bin/yum: /u

-bash: /usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory

报错:-bash: /usr/bin/yum: /usr/bin/python: bad interpreter: No such file or directory python多版本造成额问题 找不到python的路径 所以保持 -查找python#whereis pythonpython: /usr/bin/python /usr/bin/python2.4 /usr/lib/python2.4 /usr/local/bin/python2.7 /usr/local/bin/python

/usr/bin/perl^M: bad interpreter: No such file or directory

1.web显示 2.nagios服务端测试 [[email protected] objects]# /usr/local/nagios/libexec/check_nrpe -H 10.0.0.10 -c check_memNRPE: Unable to read output 3.nagios客户端测试 [[email protected] ~]#/usr/local/nagios/libexec/check_nrpe -H 127.0.0.1-c check_memNRPE: Unable

ubuntu 执行Python脚本出现: /usr/bin/env: ‘python\r’: No such file or directory

原因: #!/usr/bin/env python 在ubuntu会变成 #!/usr/bin/env python\r 而\r 会被shell 当成参数 所以出现:  /usr/bin/env: 'python\r': No such file or directory 解决方法: vi 此文件 输入:set  ff=unix 再输入:wq 保存 运行成功. 原文地址:https://www.cnblogs.com/AlfredZKY/p/10122643.html

windows系统下编写的sh拷贝到ubuntu后执行出错:/usr/bin/env: ‘bash\r’: No such file or directory

用 ./ 运行bash脚本文件出现 报错信息 /usr/bin/env: "bash\r": 没有那个文件或目录 错误原因:这主要是因为bash后面多了\r这个字符的原因.在linux终端下,输出\r会什么都不显示,只是把光标移到行首.于是终端虽然输出了/usr/bin/env bash,但是碰到\r后,光标会被移到行首,接着输出了:No such file or directory把前面的覆盖掉了.于是出现了那个莫名其妙的出错信息了 解决办法: 用vim打开sh脚本文件, 重新设置文

#!/usr/bin/python的作用

这是脚本语言共同遵守的规则:当第一行为 #!/path/to/script/interpreter时,指定了用来执行本脚本的解释器. 注意:1.必须是文件的第一行2.#!开头的,说明是脚本3./path/to/script/interpreter是脚本解释器的全路径名. 例如:#!/bin/sh shell脚本#!/usr/bin/perl perl脚本#!/usr/bin/python python脚本#!/usr/bin/python2 python2脚本#!/usr/bin/python3