Linux系统分为两种:
- RedHat系列:Redhat、Centos、Fedora等
- Debian系列:Debian、Ubuntu等
RedHat系列的包管理工具是yum文章来源:https://www.toymoban.com/news/detail-728733.html
Debian系列的包管理工具是apt-get文章来源地址https://www.toymoban.com/news/detail-728733.html
问题:
bash: vim: command not found
解决步骤:
- Debian系列
1.第一步
apt-get update
2.第二步
apt-get install -y vim
- RedHat系列
1.第一步
yum update
2.第二步
yum install -y vim
到了这里,关于Docker中出现bash: vim: command not found解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!