sudo: suorce: command not found
时间: 2024-07-03 12:01:11 浏览: 133
`sudo: source: command not found` 这个错误提示是在使用Linux或Unix系统的终端中,当你尝试使用`sudo source`命令来执行一个脚本或配置文件,但是系统找不到名为 `source` 的命令。`sudo` 是一个在Linux中用于以超级用户(root)权限运行命令的工具,而 `source` 是用来在当前 shell 环境中执行脚本文件的命令,但在你的尝试中,可能是输入有误。
正确的语法应该是 `sudo sh -c "source filename"` 或者 `sudo . filename`(如果文件就在当前目录),这样才会执行名为 `filename` 的脚本,前提是你有权限执行它并且脚本确实存在。
相关问题:
1. 如何在Linux中使用`sudo`执行脚本?
2. `sudo` 命令的作用是什么?
3. `source` 命令和`.`点操作符在Linux中的区别是什么?
相关问题
bash: make: command not foundbash: sudo: command not found bash: sudo: command not found
这两个错误都是因为缺少相应的命令或软件包导致的。第一个错误提示缺少make命令,第二个错误提示缺少sudo命令。解决方法如下:
1. 缺少make命令:
可以通过安装build-essential软件包来解决。在终端中输入以下命令进行安装:
```
sudo apt-get update
sudo apt-get install build-essential
```
安装完成后,再次尝试运行make命令即可。
2. 缺少sudo命令:
可以通过安装sudo软件包来解决。在终端中输入以下命令进行安装:
```
su root
apt-get update
apt-get install sudo
```
安装完成后,再次尝试运行sudo命令即可。
[root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install software-properties-common sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo add-apt-repository ppa:mc3man/mpv-tests sudo: add-apt-repository: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get update sudo: apt-get: command not found [root@iZ0jlcgjrcxfsxz0tlpnqfZ ffmpg]# sudo apt-get install mpv sudo: apt-get: command not found你的方法不行
非常抱歉,我之前的回答有误,CentOS 并不支持 apt-get 命令。在 CentOS 中,你可以使用 yum 命令来安装软件包。
要安装 mpv 播放器,可以使用以下命令:
```
sudo yum install epel-release
sudo yum install mpv
```
第一条命令是安装 EPEL 软件源,第二条命令是安装 mpv 播放器。请注意,你需要具有 sudo 权限才能运行这些命令。
阅读全文