Answers:
好了,您可以删除并重新安装软件包
ppa-purge
仍然可能是您彻底逃脱的最佳选择。只需重新添加该程序包所来自的PPA,然后将ppa-purge
其杀死即可。我不确定您安装了多少个PPA,但是如果少于10个,我会考虑这样做。
如果您认为该方法太软,我只是写了一些bash
-porn来帮助识别其安装源现在仅在本地存在的软件包版本/var/lib/dpkg/status
。这与“孤立”程序包不同。
for p in `dpkg-query --showformat='${Package} ' -W`; do
if [[ $(apt-cache policy $p | grep -Pzo "\*\*\* [^\n]+\s+100") ]]; then
echo $p;
fi;
done
我不确定这是否完美,但请尝试一下。请注意,这只会打印出软件包的名称。您将必须手动卸载/重新安装每个软件包。
为此,请先通过运行查看该程序包的可用内容,apt-cache policy <package>
然后您会看到程序包版本(包括/var/lib/dpkg/status
版本)的列表。找到最近的外部设备并运行:
sudo apt-get install <package>=<version>
您可能需要在--reinstall
后面添加一个,install
但要看它如何进行。
ppa-purge
已被删除?在Trusty以及所有其他受支持的发行版的存储库中。
我编写了一个更完整的脚本,该脚本可以识别当前版本不是来自PPA的软件包,并且它们具有可供PPA使用的替代版本。运行后,它会打印一个准备运行的命令,该命令会将此类软件包降级到其PPA版本。
https://gist.github.com/peci1/2d7859857fdad73ee8443f5ecd5ee5a3
#!/usr/bin/env bash
# BSD 3-clause license, copyright Martin Pecka @ 2019
# This script outputs a command that will revert all packages from non-PPA versions to their latest PPA version.
# This may be handy i.e. for finding packages for which you installed a newer version from a .deb file, or after
# incompletely removing a PPA.
export LC_ALL=C
command=""
for p in `dpkg-query --showformat='${Package} ' -W`; do
if [[ $(apt-cache policy $p | grep -Pzo "\*\*\* [^\n]+\s+100") ]]; then
versions=$(apt-cache policy $p | tr "\n" "\r" | grep -Po '(?<=\r )[ *]{3} [^\r]+ [0-9]+\r\s+[0-9]+' | sed 's/ [0-9]\+\r\s\+\([0-9]\+\)/ \1/g' | tr "\r" "\n")
installable_versions=$(echo "${versions}" | grep -v " 100$")
version_to_install=$(echo "${installable_versions}" | head -n1 | grep -Po "\s+\K.*(?= [0-9]+$)")
if [[ ! -z "${version_to_install}" ]]; then
echo "${p}=${version_to_install}"
command="${command} ${p}=${version_to_install}"
else
echo "${p}: no PPA version"
fi
fi;
done
echo "To revert packages to their latest PPA version, call the following command as root. Please, carefully go through the list of changes apt-get will present to you!"
echo "apt-get install ${command}"