如何在 Kubuntu 20.10 上配置 i3

如何在 Kubuntu 20.10 上配置 i3

我是窗口管理器领域的新手。我安装了 Kubuntu 20.10,我想了解如何设置、使用和控制 i3 wm,以及 kde 和 Polybar。我尝试按照 GitHub 问题部分的指南进行操作,但对我不起作用。我安装了 i3-gaps-deb按照此并添加

deb http://us.archive.ubuntu.com/ubuntu/ zesty main universe
deb-src http://us.archive.ubuntu.com/ubuntu/ zesty main universe

但是/etc/apt/source.list 如果我运行apt update终端显示错误:

Hit:1 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:2 http://it.archive.ubuntu.com/ubuntu groovy InRelease
Hit:3 http://it.archive.ubuntu.com/ubuntu groovy-updates InRelease              
Hit:4 http://it.archive.ubuntu.com/ubuntu groovy-backports InRelease            
Get:5 http://security.ubuntu.com/ubuntu groovy-security InRelease [108 kB]      
Get:6 http://de.archive.ubuntu.com/ubuntu xenial InRelease [247 kB]             
Err:6 http://de.archive.ubuntu.com/ubuntu xenial InRelease                      
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
Hit:7 https://packagecloud.io/AtomEditor/atom/any any InRelease
Reading package lists... Done
W: GPG error: http://de.archive.ubuntu.com/ubuntu xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
E: The repository 'http://de.archive.ubuntu.com/ubuntu xenial InRelease' is not signed.
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.

所以我想知道在哪里可以找到更多信息。我想制作一个类似这样的工作设置:Youtube 视频。 非常感谢。

答案1

混合存储库不是一个好主意,但如果你愿意,你可以继续。此外热情的Ubuntu 版本现在已经终止使用,因此您不能使用archive.ubuntu.com它的 URL,而应该使用old-releases.ubuntu.com它。

要删除 NO_PUBKEY 消息,请使用以下命令:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5 
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32

然后运行sudo apt-get update

另请注意,软件包的官方搜索引擎位于https://packages.ubuntu.com而不是在过时的第三方博客上。
如果按照上述方法操作后错误仍然存​​在,请编辑您的问题以说明您的最终想法。

相关内容