我有一台基于 WM8880 SoC 的旧上网本(https://laptop.fossee.in/)用于运行 lubuntu 16.04(由福塞团队)通过 Uboot 引导加载程序相当好,有一天它说我可以升级到 18.04,所以我什至没有想到我做到了sudo apt-get dist-upgrade
。
问题在那之后就开始了
wifi硬件不显示
背光键停止工作
sudo apt-get update
或者install
不起作用我最终得到
sudo apt-get update --fix-missing
Err:1 http://archive.canonical.com/ubuntu xenial InRelease
Temporary failure resolving 'archive.canonical.com'
Err:2 http://ports.ubuntu.com/ubuntu-ports xenial InRelease
Temporary failure resolving 'ports.ubuntu.com'
Err:3 http://ports.ubuntu.com/ubuntu-ports xenial-updates InRelease
Temporary failure resolving 'ports.ubuntu.com'
Err:4 http://ports.ubuntu.com/ubuntu-ports xenial-backports InRelease
Temporary failure resolving 'ports.ubuntu.com'
Err:5 http://ports.ubuntu.com/ubuntu-ports xenial-security InRelease
Temporary failure resolving 'ports.ubuntu.com'
Reading package lists... Done
W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial/InRelease Temporary failure resolving 'ports.ubuntu.com'
W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial-updates/InRelease Temporary failure resolving 'ports.ubuntu.com'
W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial-backports/InRelease Temporary failure resolving 'ports.ubuntu.com'
W: Failed to fetch http://ports.ubuntu.com/ubuntu-ports/dists/xenial-security/InRelease Temporary failure resolving 'ports.ubuntu.com'
W: Failed to fetch http://archive.canonical.com/ubuntu/dists/xenial/InRelease Temporary failure resolving 'archive.canonical.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.
声音不再起作用等等。
这是硬件详细信息,来自lsusb
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 0bda:8152 Realtek Semiconductor Corp.
Bus 001 Device 004: ID 1017:1006 Speedy Industrial Supplies, Pte., Ltd
Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
和lspci
00:01.0 IDE interface: VIA Technologies, Inc. Device 1359
00:02.0 Ethernet controller: VIA Technologies, Inc. VT6105/VT6106S [Rhine-III] (rev 84)
00:04.0 USB controller: VIA Technologies, Inc. USB 2.0 (rev 90)
00:05.0 USB controller: VIA Technologies, Inc. VT82xx/62xx UHCI USB 1.1 Controller (rev 90)
00:06.0 USB controller: VIA Technologies, Inc. VT82xx/62xx UHCI USB 1.1 Controller (rev 90)
和输出dmesg | grep wifi
[ 3.735124] wifi_power_ctrl 1, delay:0
[ 3.735158] use default wifi gpio: susgpio1
[ 3.735179] request gpio:156 for wifi success!!!
[ 3.735189] power on wifi
[ 3.735282] wifi_power_ctrl 0, delay:0
[ 3.735310] use default wifi gpio: susgpio1
[ 3.735328] power down wifi
从电路板图像中可以看出,我的 WiFi 卡是 Realtek 8152这里。我试图通过向团队请求原始固件来回滚,但他们没有,并且在线副本似乎是已删除。
该团队已经发布了内核源代码和一些其他工具这里
有什么方法可以让丢失的功能再次运行吗?
我正在考虑从源代码编译内核并尝试安装它?
可能出了什么问题?