Skip to content

Instantly share code, notes, and snippets.

@diegoboot
Last active October 25, 2016 21:19
Show Gist options
  • Save diegoboot/acf2391e4e6d22d88a1461d20995bad2 to your computer and use it in GitHub Desktop.
Save diegoboot/acf2391e4e6d22d88a1461d20995bad2 to your computer and use it in GitHub Desktop.
🎧 Spotify no Ubuntu e Fedora - Instalação e Review https://youtu.be/IXoA3muKQyk
""" Instalação do Spotify no Ubuntu, Debian e derivados
Abra um terminal """
# Repositório para versão ESTáVEL do programa
sudo sh -c ”echo ‘deb http://repository.spotify.com stable non-free’ >> /etc/apt/sources.list.d/spotify.list”
# Repositório para versão INSTáVEL do programa
sudo sh -c ”echo ‘deb http://repository.spotify.com testing non-free’ >> /etc/apt/sources.list.d/spotify.list”
# Instale a chave do repositório
sudo apt-key adv — keyserver hkp://keyserver.ubuntu.com:80 — recv-keys D2C19886
# Atualize a lista de pacotes e Instale o Spotify
sudo apt-get update
sudo apt-get install spotify-client
# Caso queira desinstalar o Spotify
sudo apt-get remove spotify-client
sudo apt-get autoremove
""" Instalação no Fedora e Derivados
Abra um terminal """
# Torne-se root adicione o repositório do programa
su
dnf config-manager — add-repo=http://negativo17.org/repos/fedora-spotify.repo
# Instale o Spotify
dnf install spotify-client
# Caso queira desinstalar o Spotify
su # torne-se root
dnf erase spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment