Last active
September 7, 2016 17:05
-
-
Save diegoboot/d4b2c777a0f36e14f2b97e44d10d52ab to your computer and use it in GitHub Desktop.
Instalando o Yandex Browser no Ubuntu e em sistemas com suporte DEB • https://youtu.be/UOxgot6jCvs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Para instalar o Yandex Browser no Linux Ubuntu e sistemas com suporte a pacotes DEB, faça o seguinte: | |
Abra um terminal [no Unity use as teclas CTRL + ALT + T] | |
Se ainda não tiver, adicione o repositório do programa com este comando ou use esse tutorial """ | |
echo "deb [arch=amd64] http://repo.yandex.ru/yandex-browser/deb beta main" | sudo tee -a /etc/apt/sources.list.d/yandex-browser.list | |
# Instale a chave do repositório com o comando abaixo | |
wget -q https://repo.yandex.ru/yandex-browser/YANDEX-BROWSER-KEY.GPG -O- | sudo apt-key add - | |
# Atualize o gerenciador de pacotes com o comando | |
sudo apt-get update | |
# Agora use o comando abaixo para instalar o programa | |
sudo apt install yandex-browser-beta | |
# Para desinstalar o Yandex Browser | |
sudo apt-get remove yandex-browser-beta | |
# Método de instalação extraído do Blog do Edibaldo em http://www.edivaldobrito.com.br/yandex-browser-no-linux/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment