Vous êtes ici : Accueil / Ubuntu GNU/Linux / Logiciels / Installer Spotify sur Ubuntu

Installer Spotify sur Ubuntu

Par Pierre-Yves Landuré Dernière modification 07/11/2015 11:09

Spotify est un service de steaming musical. Ce guide vous aide à installer le client lourd pour GNU/Linux sur Ubuntu

Ce guide est testé sur:

  • Ubuntu 13.04 Raring Ringtail
  • Ubuntu 13.10 Saucy Salamander
  • Ubuntu 15.10 Wily Werewolf

Installation

Installez le logiciel:

arch="$(command dpkg --print-architecture)"
sudo bash -c "command echo '# Spotify repository.
deb http://repository.spotify.com stable non-free' \
    > '/etc/apt/sources.list.d/spotify.list'
command apt-key adv --keyserver 'keyserver.ubuntu.com' --recv-keys '94558F59'
command apt-key adv --keyserver 'keyserver.ubuntu.com' --recv-keys 'D2C19886'
command apt-get update
if [ -n \"\$(command apt-cache pkgnames 'libgcrypt11' | command egrep 'libgcrypt11$' )\" ]; then
command apt-get -y install libgcrypt11
else
command wget 'https://raw.github.com/biapy/howto.biapy.com/master/various/sf-downloader' \
--quiet --no-check-certificate --output-document='/tmp/sf-downloader'
source=\"\$(command bash '/tmp/sf-downloader' --output-directory=\"/tmp\" \
--generic=\"http://security.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/\" \
'libcrypt11' \"libgcrypt11_VERSION_${arch}.deb\")\"
if [ -e \"\${source}\" ]; then
command dpkg -i \"\${source}\"
fi
fi
command apt-get install -y spotify-client"

Détails de l'installation

Détectez l'architecture du système:

arch="$(command dpkg --print-architecture)"

Ajoutez les dépôts du logiciel:

command echo '# Spotify repository.
deb http://repository.spotify.com stable non-free' \
    | sudo tee '/etc/apt/sources.list.d/spotify.list'

Installez la clef publique du dépôt:

sudo apt-key adv --keyserver 'keyserver.ubuntu.com' --recv-keys '94558F59'
sudo apt-key adv --keyserver 'keyserver.ubuntu.com' --recv-keys 'D2C19886'

Mettez à jour la liste des paquets disponibles

sudo apt-get update

Installez la bibliothèque libgcrypt11 (depuis les dépôts Trusty si elle n'est pas disponible dans les dépôts par défaut):

if [ -n "$(command apt-cache pkgnames 'libgcrypt11' | command egrep 'libgcrypt11$' )" ]; then
sudo apt-get install libgcrypt11
else
command wget 'https://raw.github.com/biapy/howto.biapy.com/master/various/sf-downloader' \
--quiet --no-check-certificate --output-document='/tmp/sf-downloader'
source="$(command bash '/tmp/sf-downloader' --output-directory="/tmp" \
--generic="http://security.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/" \
'libcrypt11' "libgcrypt11_VERSION_${arch}.deb")"
if [ -e "${source}" ]; then
sudo dpkg -i "${source}"
fi
fi

Installez le logiciel:

sudo apt-get install spotify-client

Remerciements

  • Merci aux développeurs de Spotify.