博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dpkg, APT, aptitude常用命令
阅读量:6162 次
发布时间:2019-06-21

本文共 899 字,大约阅读时间需要 2 分钟。

Install

dpkg --install, -i [deb]

apt-get install [package]
aptitude install [package]

Remove

dpkg --remove, -r [package]

dpkg --purge, -P [package]
apt-get remove [package]
apt-get purge [package]
aptitude remove [package]
aptitude purge [package]

dpkg-query --list, -l [pattern] // installed

dpkg-query --search, -S [file] // installed
apt-cache search [pattern]
apt-file search [file]
aptitude search [pattern]

Show infomation

dpkg-query --status, -s [package]

dpkg-query --listfiles, -L [package]
dpkg-deb --info, -I [deb]
dpkg-deb --contents, -c [deb]
dpkg-deb --field, -f [deb]
apt-cache show [package]
apt-cache showpkg [package]
apt-cache depends [package]
apt-cache rdepends [package]
aptitude show [package]

Notice

apt-file should be installed and run apt-file update before used.

Use proxy

  • Temporary proxy
    • export http_proxy=

Reference

转载于:https://www.cnblogs.com/nn0p/p/4346107.html

你可能感兴趣的文章
淘宝的几个架构图
查看>>
linux后台运行程序
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
登记申请汇总
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Shell基础之-正则表达式
查看>>
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>
Python学习--time
查看>>
在OSCHINA上的第一篇博文,以后好好学习吧
查看>>
Spring常用注解
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>