apt-get命令来自于英文词组“Advanced Package Tool get”的缩写,其功能是用于管理服务软件。apt-get命令主要应用于Debian、ubuntu等系统,能够像yum/dnf软件仓库一样自动下载、配置、安装、卸载服务软件,用户只要准确提出需求就好~
语法格式:apt-get [参数] 软件名
常用参数:
update | 重新获取软件包列表 |
upgrade | 更新软件 |
install | 安装软件 |
remove | 卸载软件 |
autoremove | 自动卸载不使用的软件 |
source | 下载源代码 |
build-dep | 编译依赖关系 |
dist-upgrade | 更新系统 |
purge | 删除配置文件 |
clean | 清理垃圾文件 |
check | 检查是否损坏 |
参考实例
安装指定的服务软件:
[root@linuxcool ~]# apt-get install httpd
更新软件列表:
[root@linuxcool ~]# apt-get update
卸载指定的服务软件:
[root@linuxcool ~]# apt-get remove httpd
卸载指定的服务软件及配置信息:
[root@linuxcool ~]# apt-get -purge remove httpd