温馨提示×

LibreOffice Linux版如何卸载

小樊
59
2025-08-27 13:47:15
栏目: 智能运维

Linux系统卸载LibreOffice常用方法如下:

  • 使用包管理器(推荐)
    • 基于Debian系统(如Ubuntu):打开终端,输入sudo apt-get remove --purge libreoffice,若需清理残留依赖,可再输入sudo apt-get autoremove
    • 基于Red Hat系统(如CentOS、Fedora):打开终端,输入sudo dnf remove libreoffice(Fedora)或sudo yum remove libreoffice(CentOS),清理残留依赖可输入sudo dnf autoremove(Fedora)或sudo yum autoremove(CentOS)。
    • 基于Arch系统(如Manjaro):打开终端,输入sudo pacman -Rns libreoffice
  • 使用图形界面:打开“系统设置”或“软件中心”,找到“已安装的应用程序”或“软件包管理器”,在其中找到LibreOffice并选择卸载。

0