Como instalar o arquivo .deb no ubuntu usando o terminal? [duplicado]

11

Estou tentando instalar o Google Chrome, pois baixei um arquivo google-chrome-stable_current_i386.deb.

Quando tento instalar usando install no terminal

sudo install google-chrome-stable_current_i386.deb

Dá o seguinte erro.

install: missing destination file operand after ‘google-chrome-stable_current_i386.deb’ Try 'install --help' for more information.

    
por user2437432 22.08.2013 / 12:35

2 respostas

20

Você pode instalar usando o terminal, como as respostas anteriores dizem,

sudo dpkg -i google-chrome-stable_current_i386.deb

Ou então, você pode clicar duas vezes no arquivo .deb baixado e ele será aberto no Ubuntu Software Center (se você estiver usando o Ubuntu). Então você pode instalá-lo clicando no botão install .

    
por Deepal 22.08.2013 / 13:00
4

Você pode instalá-lo usando o comando dpkg :

sudo dpkg -i google-chrome-stable_current_i386.deb

Verifique dpkg --help para mais informações.

    
por Sathish 22.08.2013 / 12:42