Linux系统分为两种:
- RedHat系列:Redhat、Centos、Fedora等
- Debian系列:Debian、Ubuntu等
RedHat系列的包管理工具是yum文章来源:https://uudwc.com/A/nPLRA
Debian系列的包管理工具是apt-get文章来源地址https://uudwc.com/A/nPLRA
问题:
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