我最近转移了 WSL,因为我的驱动器空间不足,所以我已经将其从使用 VM 转为使用 Docker。我在 WSL 中安装了 Kali Linux 和 ubuntu。
Ubuntu 运行完美,没有任何问题,但当我升级 Kali Linux 时,它在安装时出现问题。libc6
我尝试了 Stack Overflow 上关于 ubuntu 的先前问题的几个选项,但都不起作用。我使用的是 Windows 11,并使用商店和下载 Kali Linux wsl --install
。
sudo apt install libc6
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libc6 is already the newest version (2.37-15).
The following additional packages will be installed:
libc-bin libc-l10n locales-all
Recommended packages:
manpages
The following packages will be upgraded:
libc-bin libc-l10n locales-all
3 upgraded, 0 newly installed, 0 to remove and 45 not upgraded.
1 not fully installed or removed.
Need to get 0 B/12.1 MB of archives.
After this operation, 1,024 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up libc6:amd64 (2.37-15) ...
Progress: [ 7%] [############...............................................................................................................................................................................]
答案1
嗯,对此没什么可说的,但是我使用以下命令解决了这个问题:
sudo mv /usr/sbin/telinit /usr/sbin/telinit.bak
sudo ln -s /usr/bin/true /usr/sbin/telinit
我不知道这如何解决了我的问题。但对我来说确实有效。我尝试在网上博客中搜索,而不是询问 AI;我以前尝试过使用 AI 进行代码生成,但当我学习新东西时,它让我感到很苦涩。以前应该使用 AI。