반응형
rails server 개발 때문에 멀티부팅으로 리눅스를 설치하고 나니
무선랜이 갑자기 중간에 뚝뚝 끊기기 시작했다
이 와중에 구글신 강림해서 또 열심히 검색한 결과
http://askubuntu.com/questions/590414/wifi-problems-with-rtl8723be-in-ubuntu-14-04
기존의 커널에 설치된 드라이버 외에 새로 설치해야 한다고 한다.
Install required packages
sudo apt-get install build-essential git
- git clone new realtek wifi modules
git clone https://github.com/lwfinger/rtlwifi_new/
- enter the directory
cd rtlwifi_new
- build it
make
- install
sudo make install
Now you can reboot or unload/load modules
- unload modules
sudo modprobe -r rtl8723be
- load new module
sudo modprobe rtl8723be
- if it still doesn't work, try the sollution from this post
echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
위와 같은 방법으로 진행 후에는 정상적으로 작동하는 것을 확인할 수 있다.
(끝나고 재부팅 안하면 잘 안 되는거 같기도...)
728x90