Solus용 Realtek rtl8723be 드라이버를 컴파일하고 싶습니다. 드라이버가 포함된 git 저장소를 찾았습니다. https://github.com/lwfinger/rtlwifi_new
다음 단계를 따르려고 합니다.
make
sudo make install
sudo modprobe -rv rtl8723be
"make"를 실행하면 다음과 같은 결과가 출력됩니다.
$ make
make -C /lib/modules/4.16.7-66.current/build M=/home/priten/rtlwifi_new modules
make[1]: Entering directory '/usr/src/linux-headers-4.16.7-66.current'
Makefile:974: *** "Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel". Stop.
make[1]: Leaving directory '/usr/src/linux-headers-4.16.7-66.current'
make: *** [Makefile:58: all] Error 2
답변1
그래서 이 문제를 해결하기 위해 제가 한 일은 다음과 같습니다.
필요한 라이브러리 설치
sudo eopkg up
sudo eopkg install -c system.devel
sudo eopkg it linux-current-headers
# OR, depending on your kernel
sudo eopkg it linux-lts-headers
sudo eopkg it libelf-devel
Realtek WiFi 드라이버 컴파일
git clone https://github.com/lwfinger/rtlwifi_new
cd rtlwifi_new/
make
sudo make install
sudo modprobe -rv rtl8723be
sudo modprobe -v rtl8723be ant_sel=2
sudo ip link set wlo1 up
sudo iw dev wlo1 scan
sudo su
sudo echo "options rtl8723be ant_sel=2" > /etc/modprobe.d/50-rtl8723be.conf
exit