我是 Linux 新手,因此我确信我错过了一些简单的东西。我按照指示通过Docker 引擎安装
运行后
$ echo
"deb [arch=$(dpkg --print-architecture) 签名者=/etc/apt/keyrings/docker.gpg]https://download.docker.com/linux/ubuntu
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
然后运行
$ sudo apt-get 更新
我正在拿回这个
Ign:1 http#://packages.linuxmint.com una InRelease 命中:2 http#://packages.linuxmint.com una Release
命中:3 https#://dl.google.com/linux/chrome/deb stable InRelease
Ign:5 https#://download.docker.com/linux/ubuntu una InRelease
Hit:6 http#://repository.spotify.com stable InRelease
Hit:7 https#://repo.nordvpn.com// deb/nordvpn/debian stable InRelease
Err:8 https#://download.docker.com/linux/ubuntu una Release
404 Not Found [IP: 108.156.91.7 443] Hit:9 http#://archive.canonical.com /ubuntu focus InRelease
点击:10 http#://archive.ubuntu.com/ubuntu focus InRelease
获取:11 http#://security.ubuntu.com/ubuntu focus-security InRelease [114 kB] 获取:12 http#: //archive.ubuntu.com/ubuntu focus-updates InRelease [114 kB] Get:13 http#://archive.ubuntu.com/ubuntu focus-backports InRelease [108 kB] 读取软件包列表...完成
E: The存储库“https#://download.docker.com/linux/ubuntu una Release”没有发布文件。 N:从这样的存储库更新无法安全地完成,因此默认情况下被禁用。 N:有关存储库创建和用户配置详细信息,请参阅 apt-secure(8) 联机帮助页。
相当确定我可以直接下载该软件包,但随后我必须手动更新。所以这基本上就是我陷入困境的地方。
我的信息:
NAME="Linux Mint" VERSION="20.3 (Una)" ID=linuxmint ID_LIKE=ubuntu PRETTY_NAME="Linux Mint 20.3" VERSION_ID="20.3"
我在链接中添加了#来破坏它们。我没有足够的影响力来发布这么多问题的链接。
任何帮助表示赞赏!
答案1
您可以在此命令中硬编码您的目标 ubuntu 版本,只需将 $(lsb_release -cs) 替换为我的目标 ubuntu 版本“focal”(20.04),但我有 20.03。
$ echo "deb [arch=$(dpkg --print-architecture) 签名者=/etc/apt/keyrings/docker.gpg]https://download.docker.com/linux/ubuntu 焦点稳定” | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
对我有用。祝你好运!