Como obtenho a página man para “apt upgrade”?

1

Obter a página man do apt é simples: man apt

O problema é que apt tem vários "sub-comandos" (como update , install , remove ), todos com seus próprios argumentos e configurações. Estes argumentos e opções não estão listados na página man do apt .

Como obtenho mais detalhes para um comando como apt upgrade ?

    
por IQAndreas 07.02.2017 / 19:37

1 resposta

2

Você deve executar o seguinte comando:

man apt-get

por exemplo:

upgrade
       upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list.
       Packages currently installed with new versions available are retrieved and upgraded; under no circumstances are currently installed packages removed, or
       packages not already installed retrieved and installed. New versions of currently installed packages that cannot be upgraded without changing the install
       status of another package will be left at their current version. An update must be performed first so that apt-get knows that new versions of packages
       are available.
    
por 07.02.2017 / 19:39