系统管理 · 2022年02月20日 0

apt-get命令 – 安装软件

apt-get命令是Debian Linux发行版中的APT软件包管理工具。所有基于Debian的发行都使用这个包管理系统。deb包可以把一个应用的文件包在一起,大体就如同Windows上的安装文件。 **语法格式:** apt-get [参数] **常用参数:** | -c | 指定配置文件 | | ---- | -------------- | **参考实例** 更新软件: ``` [root@anycode ~]# apt-get update ``` 安装apache: ``` [root@anycode ~]# apt-get install httpd ``` 安装nginx: ``` [root@anycode ~]# apt-get install nginx ``` 卸载vsftpd: ``` [root@anycode ~]# apt-get remove vsftpd ``` 卸载软件(删除配置文件): ``` [root@anycode ~]# apt-get –purge remove packagename ```