无法删除我在旧版本 Ubuntu 上安装的 PPA

无法删除我在旧版本 Ubuntu 上安装的 PPA

我最近从旧版本(16?18?我忘了)升级到了 Ubuntu 22.04

我有一台平板电脑,显然我从第三方 PPA ppa:doctormo/wacom-plus 获得了平板电脑驱动程序

好吧,现在我已经升级到 22.04,平板电脑的触控笔经常无法使用。阅读有关 PPA 的信息,它已经多年没有更新了 - 它不打算与 22.04 兼容。

我需要删除旧的 PPA 并安装适合 22.04 的程序。有人建议我使用 opentabletdriver。

那么...我该如何删除旧的 PPA?我试过了

sudo ppa-purge pp:doctormo/wacom-plus

但这只会返回以下消息:

Updating packages lists
E: The repository 'https://ppa.launchpadcontent.net/doctormo/wacom-plus/ubuntu jammy Release' does not have a Release file.
Warning:  apt-get update failed for some reason

我对 Linux 不是很精通,所以我不知道如何排除故障。感谢您提供的任何帮助!

答案1

要删除 ppa,你需要做的就是

ls /etc/apt/sources.list.d

sudo rm -i /etc/apt/sources.list.d/PPA_Name.list


然后安装xserver-xorg-input-wacom GUI 安装 OpenTabletDriver

获得 https://github.com/OpenTabletDriver/OpenTabletDriver/releases/latest/download/OpenTabletDriver.deb

sudo apt update

sudo apt install ./OpenTabletDriver.deb

systemctl --user enable opentabletdriver.service --now

相关内容