O propósito de atualizar depois de adicionar um repositório ppa

2

Ao adicionar um repositório ppa usando sudo add-apt-repository ppa:... , por que eu deveria executar sudo apt-get update ?

Eu sou novo no Ubuntu e não vejo o propósito dele porque não há pacotes instalados a partir do repositório. Leva muito tempo para percorrer meus pacotes instalados.

    
por Joren 17.08.2013 / 15:42

1 resposta

1

Das páginas de trabalho:

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.

Adicionar apt-add-repository apenas adiciona uma linha a /etc/apt/source.list .

apt-get update faz o download do último índice de pacote de todos os repositórios conhecidos

Também recomendo a leitura das páginas apt-get wiki

    
por Symin 17.08.2013 / 15:48