我正在尝试在我的 Ubuntu 20.04 Desktop amd64 上安装system-config-kickstart
。但找不到该软件包。我应该如何system-config-kickstart
在 Ubuntu 20.04 上安装?
在尝试安装之前,我已启用main
、universe
和存储库并运行。还尝试从进行安装。restricted
multiverse
apt update
apt-get install system-config-kickstart
尝试搜索该包apt-cache search
,apt search
但没有结果。
以下是我尝试安装时得到的输出。
waqas@waqas-pc:~$ sudo apt install system-config-kickstart
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package system-config-kickstart is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'system-config-kickstart' has no installation candidate
答案1
包裹已被删除后19.10 因为 Python 2 已弃用,但您仍然可以手动获取并安装它:
mkdir -p ~/Downloads/sck
cd ~/Downloads/sck
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-gtk2_2.24.0-6_amd64.deb
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/p/pygtk/python-glade2_2.24.0-6_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/s/system-config-kickstart/system-config-kickstart_2.5.20-0ubuntu25_all.deb
sudo apt-get install ./*.deb
享受。