", "apt-get autoremove Home >
Article > Operation and Maintenance > What is the command to uninstall software in linux? linux卸载软件的方法: 1、删除软件 方法一、如果你知道要删除软件的具体名称,可以使用 方法二、如果不知道要删除软件的具体名称,可以使用 sudo apt-get purge 一个带core的package,如果没有带core的package,则是情况而定。 2、清理残留数据 推荐学习:Linux视频教程 The above is the detailed content of What is the command to uninstall software in linux?. For more information, please follow other related articles on the PHP Chinese website!What is the command to uninstall software in linux?
sudo apt-get remove --purge 软件名称
sudo apt-get autoremove --purge 软件名称
dpkg --get-selections | grep ‘软件相关名称’
dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P