手揣网教程/系统工具/内容

Docker:bash: vi: command not found出错的处理办法

系统工具2024-11-04 阅读
[摘要]在使用Docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found,这个时候就需要安装vim,可是当你敲apt-get install vim命令...
在使用Docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found,这个时候就需要安装vim,可是当你敲apt-get install vim命令时,提示:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package vim
 
操作步骤:
1)这时候需要敲:apt-get update,这个命令的作用是:同步 /etc/apt/sources.list 和 /etc/apt/sources.list.d 中列出的源的索引,这样才能获取到最新的软件包。 
2)等更新完毕以后再敲命令:apt-get install vim命令即可。
如果是:bash:ping: command not found
apt-get install iputils-ping

Linux是一套免费使用和自由传播的类Unix操作系统

……

相关阅读