Estou usando o Ubunto 14.04.5 LTS. Eu tenho o gcc 4.8 e quero atualizá-lo para o gcc 4.9. Estou tentando usar os seguintes comandos que encontrei on-line:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
O primeiro comando falhou, então eu encontrei uma solução: usar este comando sudo apt-add-repository "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu trusty main"
e ele funcionou.
Então eu executo o segundo comando ( sudo apt-get update
), mas ele gera o erro:
W: GPG error: http://ppa.launchpad.net trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1E9377A2BA9EF27F
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://extras.ubuntu.com trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192
W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/trusty/Release
W: Some index files failed to download. They have been ignored, or old ones used instead.
Eu tentei atualizar as chaves com o comando sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F 16126D3A3E5C1192
, mas ele jogou o erro
gpg: keyserver timed out
gpg: keyserver receive failed: keyserver error
O que eu faço a seguir?