Linux Mint 中出现“未找到命令但可以安装...”提示?

Linux Mint 中出现“未找到命令但可以安装...”提示?

我在虚拟机上运行 Linux Mint。我之前曾在 Ubuntu 20.04 WSL 上工作过,我喜欢这个功能:如果您没有安装程序,但如果存储库中存在该程序,系统会提示您安装它。举个例子:

zathura

Command 'zathura' not found, but can be installed with:

sudo apt install zathura

我在 Linux Mint 中没有收到此提示。它只是说:

bash: zathura: command not found

现在我可以做一个,apt search ...但这是一个额外的步骤。有什么办法可以在 Mint 中实现这一点吗?我猜是制作一个单独的脚本或将某些东西放入我的脚本中,.bashrc但我不知道该怎么做。任何帮助都非常感谢。

答案1

从:https://askubuntu.com/questions/821637/how-to-show-apt-get-install-suggestions-in-command-line

负责详细且更有用的“未找到命令”消息的包是 command-not-found

通过运行安装

sudo apt-get install command-not-found

相关内容