6

В Ubuntu, если я набираю команду для приложения, которое не установлено, но о котором оно знает из БД, оно выдает мне следующее сообщение:

~ $ kate
The program 'kate' is currently not installed.  You can install it by typing:
sudo apt-get install kate

Есть ли способ получить подобное сообщение в Arch Linux?

2 ответа2

2

Так что это кажется частью Python, в Ubuntu его в:
/usr/lib64/python2.7/dist-packages/CommandNotFound/CommandNotFound.py
в следующей функции:

def advise(self, command, ignore_installed=False):
    " give advice where to find the given command to stderr "

Я нашел проект панели запуска, который реализует это: https://launchpad.net/command-not-found

Надеюсь это поможет

1

Искал точно так же, нашел блестящее решение здесь:https://bbs.archlinux.org/viewtopic.php?pid=874678#p874678

При установке pkgtools всплывает дополнительная информация:

(2/2) installing pkgtools
- Make sure to run pkgfile --update before use
- pkgfile includes a "command not found" hook for both zsh and bash.

  This will automatically run pkgfile whenever you run
  a command which the shell cannot find. If you want
  this functionality, set CMD_SEARCH_ENABLED to 1 in
  /etc/pkgtools/pkgfile.conf (or per-user by copying
  that file to ${XDG_CONFIG_HOME}/pkgtools/pkgfile.conf), then
  in your current shell run:
  source /etc/profile

- An entry has been placed in /etc/cron.daily to run pkgfile --update
  If you do not want this functionality, set UPDATE_CRON=0 in /etc/pkgtools/pkgfile.conf

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .