从来自不同论坛的bug报告中,我得出结论,降低wpa请求者的级别可能是解决我的连接问题的一种解决方案。我需要降级的wpasupplicant (2.10是目前的版本),以能够连接我的学校网络。我现在正在使用Kali Linux,并且不知道如何将wpasupplicant降级为一些更老的版本,比如2.9。
https://forum.endeavouros.com/t/cannot-connect-to-wifi-network-after-wpa-supplicant-upgrade/23207/18
https://bugs.launchpad.net/ubuntu/+source/wpa/+bug/1958267
https://bugs.archlinux.org/task/73495?project=1&order=dateopened&sort=desc
我试过sudo apt install --allow-downgrades wpasupplicant=2:2.10-2
但是得到一个错误E: Version '2:2.10-2' for 'wpasupplicant' was not found
另外,在关于这个问题的另一个问题中(链接下面),据说添加了降级所需的存储库。但我还是需要你帮我处理这部分。https://askubuntu.com/questions/1046810/cannot-downgrade-wpa-supplicant-to-fix-wi-fi-connection-to-a-corporate-network
对于不同版本的wpasupplicant我发现
https://repology.org/project/wpa-supplicant/versions,但我不知道如何使用这些repos降低评级。
发布于 2023-04-19 17:28:51
我的wpa_supplicant v2.10也有很多问题-对我来说,我无法创建一个wifi热点,这是完全可用的。我在ubuntu上也有同样的问题,下面是Kali Linux (确认工作)的答案:
# add in old (sadly unsigned) source list
deb http://old.kali.org/kali 2021.1 main contrib non-free
# since the source list doesn't include a .gpg file, we need to manually allow it
apt-get update --allow-insecure-repositories
# match the version of wpasupplicant that was in the old repo
sudo apt --allow-downgrades install wpasupplicant=2:2.9.0-17
# prevent the package from being upgraded
sudo apt-mark hold wpasupplicant
# check is working with
wpa_supplicant -v
# wpa_supplicant v2.9
# Copyright (c) 2003-2019, Jouni Malinen <j@w1.fi> and contributors(以上所有这些都是受为ubuntu提供指导的博客文章启发的)
https://unix.stackexchange.com/questions/732765
复制相似问题