示例
apt purge -y apache2 #会同时清除软件包和软件的配置文件
apt autoremove -y
apt clean
#删除包缓存中的所有包
ls -l /var/cache/apt/archives/ #包缓存已清空
apt install -d -y apache2
#把包下载到缓存中而不安装
mkdir /home/qin/Desktop/apache2
cp /var/cache/apt/archives/*.deb /home/qin/Desktop/apache2
dpkg -i /home/qin/Desktop/apache2/*.deb #安装软件包
systemctl start apache2
systemctl status apache2
https://xpanx.com/
评论