Ubuntu软件管理
Posted ldyaly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu软件管理相关的知识,希望对你有一定的参考价值。
查看系统信息:cat /etc/os-release
lsb_release -a lsb_release -c 别名
dpkg:类似于rpm
apt: 类似于yum
一、dpkg:
dpkg -i 安装
dpkg -r 删除(不推荐)
dpkg -P 删除包(包括配置文件)
dpkg -l 列出已安装的包。rpm -qa
dpkg -L 包名 包的简要说明。rpm -qi
dpkg -s 包名 包的状态及详细说明。rpm -qi
dpkg -S pattern 搜索包含pattern的信息,包括包。类似rpm -qf。个人感觉更像yum search
二、apt:从16.04开始:apt替代了apt-get、apt-cache、apt-config
基于仓库才可安装包
仓库配置文件:①、cp /etc/apt/sources.list{,.bak} 先备份一下
②、vim /etc/apt/sources.list
③、去aliyun直接将配置复制过来
④、apt update 类似于yum clean all
参数:apt install 安装
apt remove 卸载
apt autoremove 自动删除无用包及程序(推荐)
apt purge 卸载及移除配置文件
apt update 清楚缓存
apt upgrade 升级包
apt full-upgrade 升级包自动处理依赖关系
apt search 搜索(包含文件、包)
apt show 显示安装细节
apt list [*包名*] 搜包
apt edit-sources 编辑源列表
以上是关于Ubuntu软件管理的主要内容,如果未能解决你的问题,请参考以下文章