美文网首页
centos和ubuntu的包管理

centos和ubuntu的包管理

作者: 有一个美丽的小女孩 | 来源:发表于2019-04-15 12:04 被阅读0次

1.搜索

Centos:yum search 包名

Ubuntu:apt-cache search 包名

2.安装

Centos:yum install 包名

Ubuntu:apt-get install 包名

3.卸载

Centos:yum remove 包名

Ubuntu:apt-get remove 包名

4.获取源码包

Centos:yum search 源码包;yum install 源码包 (一般是已src.rpm结尾的)

Ubuntu:apt-get source 包名

  1. 查找文件所在的包名

Centos:yum provides *文件名

Ubuntu:apt-file update ; apt-file search 文件名

  1. 列出所有软件包

Centos:rpm -qa

Ubuntu:dpkg -l

  1. 查询文件属于哪个包

Centos:rpm -qf 文件路径

Ubuntu:dpkg -S 文件路径

  1. 列出包的内容

Centos:rpm -ql 包名

Ubuntu:dpkg -L 包名

相关文章

  • nodejs10安装

    CentOS7在线安装 CentOS7离线安装 下载RPM包,安装即可 Ubuntu在线安装 Ubuntu离线安装...

  • wordpress: 安装(centos7)

    简单描述系统ubuntu,centos和windows的关系 ubuntu和centos都属于linux系统 如果...

  • Linux小结

    基本环境: centos7、centos6.5 deb后缀的软件包是for Debian系的(包括Ubuntu),...

  • RabbitMQ (二)安装

    ** 在 debian 下安装 (centos、ubuntu 可自行google)** 安装依赖包 erlang,...

  • centos和ubuntu的包管理

    1.搜索 Centos:yum search 包名 Ubuntu:apt-cache search 包名 2.安装...

  • Linux之ubuntu介绍及安装

    Ubuntu介绍 Ubuntu和Centos都是基于Gun/Linux内核的,因此基本使用和Centos是几乎一样...

  • CentOS和Ubuntu区别

    CentOS和Ubuntu区别 CentOS(Community ENTerprise Operating Sys...

  • CentOS vs Ubuntu

    CentOS vs Ubuntu CentOS 和Ubuntu 是两个主要的Linux发行版,主要区别: Ref:...

  • Centos7下安装Python3.7

    Centos7下安装Python3.7 首先安装依赖包,centos里面是-devel,如果在ubuntu下安装则...

  • 阿里云服务器

    1. 购买或者申请免费的阿里云服务器(centOS、ubuntu、windows等,推荐centOS和ubuntu...

网友评论

      本文标题:centos和ubuntu的包管理

      本文链接:https://www.haomeiwen.com/subject/kaquwqtx.html