Как найти имя пакета для удаления пакета?

Вы можете получить новейшую версию flash-плеера для firefox. Просто выполните следующие действия:

sudo add-apt-repository ppa:skunk/pepper-flash
sudo apt-get update
sudo apt-get install pepflashplugin-installer
sudo mkdir -p /opt/google/chrome/PepperFlash
sudo ln -s /usr/lib/pepflashplugin-installer/libpepflashplayer.so /opt/google/chrome/PepperFlash

, а затем:

sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install freshplayerplugin

Это установит перечную флешку (флеш-плеер google chrome) в firefox.

1
задан 23 May 2018 в 07:08

3 ответа

Из man apt-cache:

pkgnames [prefix]
   This command prints the name of each package APT knows. The
   optional argument is a prefix match to filter the name list.
   [...]

   Note that a package which APT knows of is not necessarily available
   to download, installable or installed, e.g. virtual packages are
   also listed in the generated list.

Если вы хотите найти установленные пакеты, один из способов - использовать man apt-cache :

list (work-in-progress)
   list is somewhat similar to dpkg-query --list in that it can
   display a list of packages satisfying certain criteria. It supports
   glob(7) patterns for matching package names as well as options to
   list installed (--installed), upgradeable (--upgradeable) or all
   available (--all-versions) versions.

Итак:

apt list --installed 'virtualbox*'
1
ответ дан 8 June 2018 в 14:01

Из man apt-cache:

pkgnames [prefix] This command prints the name of each package APT knows. The optional argument is a prefix match to filter the name list. [...] Note that a package which APT knows of is not necessarily available to download, installable or installed, e.g. virtual packages are also listed in the generated list.

Если вы хотите найти установленные пакеты, один из способов - использовать man apt-cache :

list (work-in-progress) list is somewhat similar to dpkg-query --list in that it can display a list of packages satisfying certain criteria. It supports glob(7) patterns for matching package names as well as options to list installed (--installed), upgradeable (--upgradeable) or all available (--all-versions) versions.

Итак:

apt list --installed 'virtualbox*'
1
ответ дан 17 July 2018 в 13:40

Из man apt-cache:

pkgnames [prefix] This command prints the name of each package APT knows. The optional argument is a prefix match to filter the name list. [...] Note that a package which APT knows of is not necessarily available to download, installable or installed, e.g. virtual packages are also listed in the generated list.

Если вы хотите найти установленные пакеты, один из способов - использовать man apt-cache :

list (work-in-progress) list is somewhat similar to dpkg-query --list in that it can display a list of packages satisfying certain criteria. It supports glob(7) patterns for matching package names as well as options to list installed (--installed), upgradeable (--upgradeable) or all available (--all-versions) versions.

Итак:

apt list --installed 'virtualbox*'
0
ответ дан 20 July 2018 в 13:45

Другие вопросы по тегам:

Похожие вопросы: