[Seek Help] 如何重置某个应用或彻底卸载某个应用
Tofloor
poster avatar
185******62
deepin
2023-02-01 03:19
Author

如题,deepin20.8安装freedownloadmanager下载BT文件后蹦了,无法启动,再次启动时总是创建崩溃前最后创建的BT任务,就没有然后了,卸载后问题依旧,deepin应用如何重置应用或彻底卸载应用,谁知道怎么做,谢谢!!

Reply Favorite View the author
All Replies
donaldsebleung
deepin
2023-02-01 03:32
#1

假设 deb 包包名为 freedownloadmanager,完全卸载软件包,包括配置文档及依赖包如下:

sudo apt purge --auto-remove freedownloadmanager
Reply View the author
蔡EEPIN
deepin
2023-02-01 03:36
#2

试试 motrix
eSearch-2023-01-31-18-35-41-937.jpg

Reply View the author
吉吉如律令
deepin
2023-02-01 03:41
#3

deepin默认的卸载使用的是remove命令,不会删除配置文件,删除配置文件需要像一楼所说的那样使用purge命令,在不知道软件包名且已经卸载软件时,可以试试这条命令

dpkg -l | grep "^rc" | awk '{print $2}' | xargs sudo apt -y purge
Reply View the author
185******62
deepin
2023-02-01 03:59
#4
donaldsebleung

假设 deb 包包名为 freedownloadmanager,完全卸载软件包,包括配置文档及依赖包如下:

sudo apt purge --auto-remove freedownloadmanager

谢谢您的回复,不过问题依旧

Reply View the author
185******62
deepin
2023-02-01 03:59
#5
吉吉如律令

deepin默认的卸载使用的是remove命令,不会删除配置文件,删除配置文件需要像一楼所说的那样使用purge命令,在不知道软件包名且已经卸载软件时,可以试试这条命令

dpkg -l | grep "^rc" | awk '{print $2}' | xargs sudo apt -y purge

谢谢您的回复,不过问题依旧

Reply View the author
185******62
deepin
2023-02-01 04:00
#6
蔡EEPIN

试试 motrix
eSearch-2023-01-31-18-35-41-937.jpg

感谢

Reply View the author
安洛
deepin
2023-02-01 06:30
#7

楼上的做法只能删除随软件安装的配置文件,不会删除软件自行创建的文件。

你这种情况需要找到fdm创建的下载进度保存文件。一个常见的做法是在 ~/目录下搜索freedownloadmanager并删除。一般来说,比较高频的出现位置包括 ~/自己, ~/.config ~/.local/share

Reply View the author