更新 i3 时出现问题

更新 i3 时出现问题

我在更新 i3-wm 时遇到问题

当我输入

i3 --moreversion 2>&- || i3 --version

我明白了

Binary i3 version:  4.7.2 (2014-01-23, branch "tags/4.7.2") © 2009-2013 Michael Stapelberg and contributors
Running i3 version: 4.7.2 (2014-01-23, branch "tags/4.7.2") (pid 1889)

The i3 binary you just called: /usr/bin/i3
The i3 binary you are running: i3

所以我使用的是 4.7.2 版本,我检查了一下,该版本是去年的,最新版本是 4.10.3。

但是当我使用 apt-get update 和 upgrade 时,什么都没有升级,我尝试了

~/Downloads/i3-4.10.3$ sudo apt-get install i3
Reading package lists... Done
Building dependency tree       
Reading state information... Done
i3 is already the newest version.

有什么问题 ?

答案1

4.10.3 版本不在 Trusty 的 Ubuntu 存储库中。您需要 Wily 或更简单的方法,按照以下步骤添加额外的存储库:

sudo -i
echo "deb http://debian.sur5r.net/i3/ $(lsb_release -c -s) universe" >> /etc/apt/sources.list
apt-get update
apt-get --allow-unauthenticated install sur5r-keyring
apt-get update
apt-get dist-upgrade
exit        # to leave the root shell

来源

相关内容