sudo: updatedb: command not found
时间: 2023-11-14 15:12:44 浏览: 374
当在Ubuntu 16.04中执行sudo updatedb命令时,可能会出现"command not found"的错误。这是因为updatedb命令不在系统的PATH环境变量中。要解决这个问题,可以执行以下步骤:
1. 执行命令sudo apt-get install mlocate安装mlocate软件包。
2. 如果当前用户权限不够,需要进入root用户,执行su root命令。
3. 执行apt-get install mlocate命令安装mlocate软件包。
4. 执行updatedb命令更新数据库。
5. 使用locate命令查找文件,例如:locate xxx。
相关问题
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 权限才能运行这些命令。
阅读全文