本文是Linux Shell脚本系列教程的第(十)篇,更多Linux Shell教程请看:Linux Shell脚本系列教程 基本任何语言都有自己的循环语句,Shell当然也不例外,继上一篇之后,今天就为大家介绍下Shell for循环的用法。 Shell for循环语法 Shell…
November 13, 2018
Ubunut安装Spotify, Spotify for Linux
两个办法:
- 通过 Spotify in Ubuntu Software 点击安装
- 通过命令行:
Snap
snap install spotify
If you run another Linux distribution than Ubuntu, first see https://snapcraft.io/ for how to install snap, then run the command above.
Debian
# 1. Add the Spotify repository signing keys to be able to verify downloaded packages sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90 # 2. Add the Spotify repository echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list # 3. Update list of available packages sudo apt-get update # 4. Install Spotify sudo apt-get install spotify-client
本文:Ubunut安装Spotify, Spotify for Linux