目录

工欲善其事

实践出真知

活跃标签: linux java mysql 待分类 windows js win10 springboot idea pdf docker 电路 esp32 vue macOS nginx git Arduino maven ffmpeg

存档:

Linux下卸载命令

在Linux中卸载软件的常用命令包括

  1. apt-get remove(Debian和Ubuntu等基于Debian的发行版)

  2. yum remove(Fedora和CentOS等基于Red Hat的发行版)

  3. dnf remove(Fedora 22及更新版本)

  4. zypper remove(openSUSE)

  5. pacman -R(Arch Linux)

  6. dpkg --remove(Debian和Ubuntu等基于Debian的发行版)

  7. rpm -e(Red Hat和CentOS等基于Red Hat的发行版)

  8. snap remove(Snap包管理器)

    对于基于APT的系统(如Debian、Ubuntu及其衍生版),可以使用以下命令卸载软件包并清除配置文件:

  • sudo apt-get autoremove --purge 软件包名(同时清除配置文件)
  • sudo apt-get remove 软件包名(仅卸载软件)

标题:Linux下卸载命令
作者:llilei
地址:http://solo.llilei.work/articles/2025/02/25/1740484992573.html