虽然尝试安装 docker在 ubuntu 16.04 上,我尝试设置稳定的存储库并获得以下内容:
$ sudo add-apt-repository \'deb [arch=amd64] https://download.docker.com/linux/ubuntu \$(lsb_release -cs) stable'
bash: syntax error near unexpected token `('
我今天刚接触 Linux,因此非常感谢任何建议。
答案1
使用
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
网页上的命令\
是让 shell 忽略换行符。如果你把整个命令放在一行中,你就可以忽略它们。
'
并且"
对于 shell 来说具有不同的含义,您必须"
在这里使用。