ubuntu

ubuntu dolphin能卸载干净吗

小樊
43
2025-08-27 15:44:17
栏目: 智能运维

可以卸载干净,步骤如下:

  1. 卸载Dolphin及配置文件
    打开终端,执行命令:
    sudo apt remove --purge dolphin
  2. 清理残留文件
    • 删除配置文件目录:rm -rf ~/.config/dolphin
    • 删除插件目录:rm -rf ~/.local/share/dolphin/plugins
  3. 清理系统残留
    sudo apt autoremove(清理无用依赖)
    sudo apt clean(清理软件缓存)
  4. 删除快捷方式
    sudo rm /usr/share/applications/dolphin.desktop
    rm ~/.config/autostart/dolphin.desktop

注意:卸载前建议备份重要数据,避免误删。若需重新安装,可通过终端命令sudo apt install dolphin恢复。

0
看了该问题的人还看了