[Ubuntu] 1 Ubuntu 软件包管理

Ubuntu 软件包管理

Posted by Mr.Vincent on 2019-07-14
Estimated Reading Time 1 Minutes
Words 396 In Total
Viewed Times

概述

APT(Advanced Packaging Tool)是 Debian/Ubuntu 类 Linux 系统中的软件包管理程序, 使用它可以找到想要的软件包, 而且安装、卸载、更新都很简便;也可以用来对 Ubuntu 进行升级; APT 的源文件为 /etc/apt/ 目录下的 sources.list 文件。

修改数据源

由于国内的网络环境问题,我们需要将 Ubuntu 的数据源修改为国内数据源,操作步骤如下:

查看系统版本

1
lsb_release -a

输出结果为

1
2
3
4
5
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04 LTS
Release: 16.04
Codename: xenial

注意: Codename 为 xenial,该名称为我们 Ubuntu 系统的名称,修改数据源需要用到该名称

编辑数据源

1
vi /etc/apt/sources.list

删除全部内容并修改为

1
2
3
4
deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse

更新数据源

1
apt-get update

常用 APT 命令

安装软件包

1
apt-get install packagename

删除软件包

1
apt-get remove packagename

更新软件包列表

1
apt-get update

升级有可用更新的系统(慎用)

1
apt-get upgrade

其它 APT 命令

搜索

1
apt-cache search package

获取包信息

1
apt-cache show package

删除包及配置文件

1
apt-get remove package --purge

了解使用依赖

1
apt-cache depends package

查看被哪些包依赖

1
apt-cache rdepends package

安装相关的编译环境

1
apt-get build-dep package

下载源代码

1
apt-get source package

清理无用的包

1
apt-get clean && apt-get autoclean

检查是否有损坏的依赖

1
apt-get check

If you like this blog or find it useful for you, you are welcome to comment on it. You are also welcome to share this blog, so that more people can participate in it. If the images used in the blog infringe your copyright, please contact the author to delete them. Thank you !