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 Visual Studio Code no openSUSE | |
usando pacote RPM faça o seguinte """ | |
# Confira se o seu sistema é de 32 bits ou 64 bits | |
uname -m | |
# Para sistemas 32 bits, use o comando abaixo para baixar o programa | |
wget "https://go.microsoft.com/fwlink/?LinkID=760681" -O vscode.rpm | |
# Para sistemas 64 bits,use o comando abaixo para baixar o programa. |
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 |
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
""" PPA ORANCHELO para Ubuntu e derivados | |
Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
Instale o pacote de ícones ORANCHELO usando os comandos abaixo """ | |
sudo add-apt-repository ppa:oranchelo/oranchelo-icon-theme | |
sudo apt-get update | |
sudo apt-get install oranchelo-icon-theme | |
# Instale no openSUSE, Fedora e baseados em RPM |
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
/* PPA Numix para Ubuntu e derivados | |
Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
Instale o Tema Numix usando os comandos abaixo */ | |
sudo add-apt-repository ppa:numix/ppa | |
sudo apt-get update | |
sudo apt-get install numix-gtk-theme numix-icon-theme numix-icon-theme-circle | |
// Instalando o tema Numix no openSUSE |
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
# Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
# Instale o ATOM usando os comandos abaixo | |
wget https://github.com/atom/atom/releases/download/v1.9.9/atom-amd64.deb -O atom.deb | |
""" Se o link estiver desatualizado, acesse https://github.com/atom/atom/releases/download | |
baixe a última versão e salve-o com o nome atom.deb """ | |
sudo dpkg --install atom.deb |
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
/* Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
Instale Deluge usando os comandos abaixo | |
*/ | |
sudo add-apt-repository ppa:deluge-team/ppa [ENTER] | |
sudo apt update [ENTER] | |
sudo apt install deluge [ENTER] | |
// Caso queira DESINSTALAR o Deluge | |
sudo add-apt-repository ppa:deluge-team/ppa --remove [ENTER] | |
sudo apt remove deluge [ENTER] |
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
# Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
# Instale o Turtl usando os comandos abaixo | |
""" Use o comando abaixo para baixar o programa | |
Se o link estiver desatualizado, acesse essa página https://turtl.it/download/ """ | |
wget https://turtl.it/releases/desktop/turtl-linux64-0.6.4.tar.bz [ENTER] | |
tar xvf turtl-linux64–0.6.3.tar.bz2 [ENTER] # para extrair arquivo tar | |
cd turtl-linux64 [ENTER] # para acesso a pasta | |
sudo ./install.sh [ENTER] # para instalar o turtl |
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
// Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
// Instale o TOMAHAWK usando os comandos abaixo | |
sudo add-apt-repository ppa:tomahawk/ppa [ENTER] | |
sudo apt-get update [ENTER] | |
sudo apt-get install tomahawk [ENTER] | |
// Caso queira DESINSTALAR o TOMAHAWK | |
sudo add-apt-repository ppa:tomahawk/ppa --remove [ENTER] |
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
""" Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
Instale o Polly usando os comandos abaixo """ | |
wget http://mirror.lagoon.nc/pub/getdeb/ubuntu/pool/apps/p/polly/polly_0.93.12-1~getdeb1_all.deb -O polly.deb [ENTER] | |
""" Se o link estiver desatualizado, acesse essa página http://mirror.lagoon.nc/pub/getdeb/ubuntu/pool/apps/p/polly/ | |
baixe a última versão e salve-o com o nome polly.deb """ | |
sudo dpkg -i polly.deb [ENTER] | |
sudo apt-get install -f [ENTER] #para instalar dependências |
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
// Abra um terminal [ no Unity use as teclas CTRL + ALT + T ] | |
// Instale o Polly usando os comandos abaixo | |
sudo add-apt-repository ppa:conscioususer/polly-daily [ENTER] | |
sudo apt-get update [ENTER] | |
sudo apt-get install polly [ENTER] | |
sudo apt-get install -f [ENTER] // para instalar as dependências se necessário |