I've seen a pro github link in the comments for the following question on how to get the Wi-Fi in Ubuntu 18.04 to work. Using the following command:
lspci | grep Wireless
I saw that my driver was rtl8188ee
. Whereas my Wi-Fi does not work,connecting by cable works flawlessly. I used the following commands from the README from the github site:
sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
sudo make install
sudo modprobe -r rtl8188ee
and it worked, but only once! After a reboot, typing:
sudo modprobe rtl8188ee
gives the following error:
$ sudo modprobe rtl8188ee
modprobe: ERROR: could not insert 'rtl8188ee': Exec format error
How should I proceed?
sudo modprobe -r rtl8188ee
– George Udosen Aug 27 '18 at 20:04