我已更新至 Ubuntu 20.04。当我使用默认终端时,一切都很好。但如果尝试使用终结器,我无法使用sudo
。我得到了permission denied
。同样,只有在使用终结器时才会出现。
我怎样才能sudo
摆脱终结者?我真的很想继续使用终结者。
编辑:我刚才还注意到它找不到make
。我猜一切都乱了。我想我会尝试卸载它并重新安装。
答案1
当我从 Ubuntu 软件下载 Terminator 时,我在 Ubuntu 20.04 上遇到了同样的问题。
从终端安装 Terminator 可以apt install terminator
解决此问题。
答案2
在 20.04.2 LTS 上,我已使用以下命令删除了损坏的 snap (v1.9.1):
sudo snap remove gnome-terminator
但如果你还没有通过 snap 安装它,你可以使用以下命令卸载它:
sudo apt --purge remove terminator
那么你有 2 个选项 (我都测试过了并且有效):
- v2.0.1
通过 NEW repo 通过 NEW 并积极维护团队:https://github.com/gnome-terminator/terminator/blob/master/INSTALL.md
sudo add-apt-repository ppa:mattrose/terminator
sudo apt update
sudo apt install terminator
- 或 v0.98
通过旧的经典路线:
sudo add-apt-repository ppa:gnome-terminator
sudo apt update
sudo apt install terminator
然而,当你这样做时会出现错误:
sudo apt update
类似于这样(错误号和IP会有所不同):
Err:10 http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu focal Release
404 Not Found [IP: 91.189.95.85 80]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/gnome-terminator/ppa/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.
因为 Terminator 的 repo 现在已经过时了 :(https://launchpad.net/~gnome-terminator/+archive/ubuntu/ppa
所以我focal
用xenial
(当您点击‘关于此 PPA 的技术细节’,然后点击下拉菜单‘选择您的 Ubuntu 版本’时支持的最后一个)替换了它,如下所示:
sudo nano /etc/apt/sources.list.d/gnome-terminator-ubuntu-ppa-focal.list
修改后的(我的最上面一行):
deb http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu focal main
到:
deb http://ppa.launchpad.net/gnome-terminator/ppa/ubuntu xenial main
然后保存并再次执行:
sudo apt update
错误就消失了。