Обновление пакетов после установки новой программы
Является ли команда apt-get update
необходимо после каждой установки нового пакета и для поврежденных пакетов?
Поскольку я новичок в этой ОС, мне приходится искать команды для пакетов, и каждое решение содержит эту часть. Почему это так необходимо?
1 ответ
Вам нужна команда apt-get update
или же sudo apt-get update
при добавлении, удалении или изменении записей в файле /etc/apt/sources.list
или в папке /etc/apt/sources.list.d/
,
от man apt-get
:
update
update is used to resynchronize the package index files from their sources.
The indexes of available packages are fetched from the location(s) specified in
/etc/apt/sources.list. For example, when using a Debian archive, this command
retrieves and scans the Packages.gz files, so that information about new and
updated packages is available. An update should always be performed before an
upgrade or dist-upgrade. Please be aware that the overall progress meter will
be incorrect as the size of the package files cannot be known in advance.
И я цитирую @Tom
Регулярно бегать
apt-get update
а такжеapt-get upgrade
чтобы получить исправления и тому подобное.