Não é possível executar o sudo apt -get, como resolver?

0
sudo apt -get update
E: Command line option 'g' [from -get] is not understood in combination with the other options.

sudo apt -get
E: Command line option 'g' [from -get] is not understood in combination with the other options.
    
por Dip 13.04.2017 / 14:46

1 resposta

3

Você tem um espaço entre "apt" e "-get"; "apt-get" é o comando que você está tentando usar. Então:

apt-get update
apt-get upgrade
apt-get install apache2
apt-get remove apache2

etc etc ..

Alternativamente, você pode usar o "apt" para gerenciar pacotes. Eu uso-o em 16.04 e ele tem alguns extras que fazem com que eu vá para o gerenciador de pacotes sobre o apt-get:

apt update
apt upgrade
apt install apache2
apt remove apache2

etc etc.

    
por Foxie 13.04.2017 / 14:55