正如我在标题中所说的那样。我遇到了一个错误,因为我尝试安装 wine,然后发生了以下情况:
Hit:1 https://brave-browser-apt-release.s3.brave.com stable InRelease
Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
Hit:3 http://ppa.launchpad.net/obsproject/obs-studio/ubuntu focal InRelease
Hit:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:5 http://packages.microsoft.com/repos/code stable InRelease
Hit:6 http://archive.ubuntu.com/ubuntu focal-backports InRelease
Ign:7 https://dl.winehq.org/wine-bulds/ubuntu focal InRelease
Hit:8 http://archive.ubuntu.com/ubuntu focal-security InRelease
Hit:9 https://dl.winehq.org/wine-builds/ubuntu focal InRelease
Hit:10 https://dl.winehq.org/wine-builds/ubuntu eoan InRelease
Err:11 https://dl.winehq.org/wine-bulds/ubuntu focal Release
404 Not Found [IP: 199.232.134.217 443]
Hit:12 http://repository.spotify.com stable InRelease
Reading package lists... Done
E: The repository 'https://dl.winehq.org/wine-bulds/ubuntu focal Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
我在这里问了一个问题 在 Ubuntu 20.04 中安装 Wine.hq
答案1
源以文本文件的形式存储在两个地方:/etc/apt/sources.list(文件)和 /etc/apt/sources.list.d/(包含文件的目录)
您可以手动禁用通过在行前添加注释标记 (#) 来删除这些文本文件中的源。以下是示例:
deb http://us.archive.ubuntu.com/ubuntu/ groovy main // Active
# deb http://us.archive.ubuntu.com/ubuntu/ groovy main // Disabled
- 在文本编辑器(如
nano
)中打开这些文件,而不是文字处理器。纳米指令 - 这些文件归 root 所有;您必须使用
sudo
:sudo nano /etc/apt/sources.list
你可以删除只需删除文件中的行即可禁用或删除源。如果您不确定是否应禁用或删除源,请询问。
您还可以使用“软件和更新”控制面板禁用或删除源。以下是示例:
- 它不在设置——使用您的桌面搜索(小九宫格或您的<Super>键)找到它。
- 确保你正在查看其他软件标签。
- 使能够选中该框可禁用源。
- 禁用取消选中即可查看来源。
- 删除突出显示来源,然后单击“删除”
答案2
eoan
从您的来源中删除:
sudo sed -i '/eoan/d' /etc/apt/sources{,.d/*}.list
它将删除eoan
以下行/etc/apt/sources.list
和/etc/apt/sources.d/*
解决以下错误:
E: The repository 'https://dl.winehq.org/wine-bulds/ubuntu focal Release' does not have a Release file.
打字错误在 URL 中wine-bulds
,应该是wine-builds
。i
缺失了。(在@用户535733 评论)
编辑你的/etc/apt/sources.list
或下面的文件/etc/apt/sources.d/
如下(也删除重复的 URL):
deb https://dl.winehq.org/wine-builds/ubuntu/ focal main