即使我没有安装 flatpak,tty 也会说“-bash:flatpak:找不到命令”。已正确卸载

即使我没有安装 flatpak,tty 也会说“-bash:flatpak:找不到命令”。已正确卸载

我安装了 flatpak,当我不喜欢它时我就卸载了。现在每当我执行 ctrl+alt+fx 转到 tty 时都会收到此错误

-bash: flatpak: command not found

终端错误

我正在使用 debian stable 内核 4.19.0-16-amd64

答案1

Flatpack在 shell 配置文件中安装一些命令。如果删除:

/etc/profile.d/flatpak.sh

你应该没问题。

另请注意,删除包apt-get remove ...不会删除包的配置,而是同时apt-get purge ...删除包和配置(在这种情况下purge 应该删除该文件)。

答案2

正如@Eduardo 说得好,跑步

# apt-get purge flatpak

将删除导致问题的文件。

# apt-get purge flatpak
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  flatpak*
0 upgraded, 0 newly installed, 1 to remove and 103 not upgraded.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 143676 files and directories currently installed.)
Purging configuration files for flatpak (1.2.5-0+deb10u4) ...

与手动删除文件相比,我更喜欢该命令(文件名可能会更改,但 apt 知道它需要知道什么)。

就我而言,该软件包也被删除,但像您一样,配置文件被留下。

相关内容