root@279935169f72:/etc# sudo yum update bash: sudo: command not found root@279935169f72:/etc#
时间: 2024-02-01 21:04:08 浏览: 182
yum命令未找到,安装yum
It seems like the `sudo` command is not installed on your Docker container. You can try to install it using the following command:
```
apt-get update
apt-get install sudo
```
After that, you can use the `sudo` command to run commands with root privileges.
阅读全文