O que significa o status “ip” na lista de pacotes do aptitude?

2

O que significa o status ip na lista de pacotes do aptitude? Por exemplo:

$ aptitude search some_package
ip some_package description
    
por Shamaoke 03.11.2011 / 06:51

3 respostas

1

O status significa que o pacote está instalado e será excluído pelo comando aptitude install (sem argumentos).

A aptidão pode adiar ações executando o comando de atuação com a opção - somente programação .

# aptitude --schedule-only purge some_package

Depois de emitir o comando, o pacote não será desinstalado imediatamente - ele será desativado e obterá o sinalizador p na lista de pacotes:

# aptitude search some_package
ip some_package description

Para realizar todas as ações pendentes, deve-se executar o seguinte comando:

# aptitude install

Para cancelar a eliminação pendente, você deve usar a ação keep :

# aptitude keep some_package

Depois de emitir o comando, o sinalizador p será apagado da lista de pacotes.

    
por 03.11.2011 / 20:25
0

A página man do aptitude diz:

Unless you pass the -F option, the output of aptitude search will look something like this:

[...]

Each search result is listed on a separate line. The first character of each line indicates the current state of the package: the most common states are p, meaning that no trace of the package exists on the system, c, meaning that the package was deleted but its configuration files remain on the system, i, meaning that the package is installed, and v, meaning that the package is virtual. The second character indicates the stored action (if any; otherwise a blank space is displayed) to be performed on the package, with the most common actions being i, meaning that the package will be installed, d, meaning that the package will be deleted, and p, meaning that the package and its configuration files will be removed. If the third character is A, the package was automatically installed.

For a complete list of the possible state and action flags, see the section “Accessing Package Information” in the aptitude reference guide. To customize the output of search, see the command-line options -F and --sort.

- > "some_package" já está instalado no seu sistema.

    
por 03.11.2011 / 10:30
0

O pacote está instalado e será removido. Confira esta parte do guia de usuários do aptitude para obter uma explicação realmente boa das bandeiras .

    
por 03.11.2011 / 12:55

Tags