Linux 错误sudo: apt-get: command not found
墨初 操作系统 1253阅读
在centos系统中安装软件时,无意间使用了 apt-get 命令,并发现centos报错 "apt-get: command not found" 错误,猛然才发现在centos系统中安装软件只能使用 yum 命令而不是 apt-get 命令,apt-get 命令是ubuntu系统中的默认安装软件的命令。那么下面就对liunx各个发行版本中的软件安装命令做一个大概的分类。
linux系统下 apt-get 与 yum 的区别
在linux系统的世界中,基本上分为两大类发行版,分别为“RedHat系列”与“Debian系列”!
RedHat系列:Redhat、Centos、Fedora....
Debian系列:Debian、Ubuntu....
RedHat 系列
1 常见的安装包格式 rpm 包,安装 rpm 包的命令是“rpm -参数”
2 包管理工具 yum
3 支持tar包
命令格式:
sudo apt-get install xxxxx
Debian系列
1 常见的安装包格式 deb 包,安装 deb 包的命令是“dpkg -参数”
2 包管理工具 apt-get
3 支持tar包
命令格式:
sudo yum install xxxxx