dpkg foi interrompido

1

Quando eu quis instalar o matlab support, ele me pediu para escrever a localização de matlab onde ele está instalado. Depois de digitar o local, o terminal foi bloqueado não mostrou nada por um tempo. Então fechei o terminal

sudo apt-get install matlab-support

Agora, quando digo atualizar ou digitar o código acima, aparece um erro abaixo. O que fazer?

E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem
    
por isifzade 15.10.2015 / 10:30

1 resposta

2

Como a mensagem de erro diz:

sudo dpkg --configure -a

de man dpkg

--configure package...|-a|--pending
        Configure a package which has been unpacked but not yet
        configured.  If -a or --pending is given instead of package, all
        unpacked but unconfigured packages are configured.

        To reconfigure a package which has already been configured, try
        the dpkg-reconfigure(8) command instead.

        Configuring consists of the following steps:

          1. Unpack the conffiles, and at the same time back up the old
             conffiles, so that they can be restored if something goes wrong.

          2. Run postinst script, if provided by the package.
    
por A.B. 15.10.2015 / 10:32