root@279935169f72:/etc# sudo yum update bash: sudo: command not found root@279935169f72:/etc#
时间: 2024-02-01 08:04:08 浏览: 176
西门子V20变频器F72报警代码原因分析及处理办法.docx
5星 · 资源好评率100%
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.
阅读全文