Difference between revisions of "Raspberry PI"

From Blue-IT.org Wiki

(Created page with "## Compiling custom kernel modules ## ### Wlan rtl8192cu ### I ran into a problem with one of my wifi dongles (see: https://ubuntuforums.org/showthread.php?t=2325802). So I...")
(No difference)

Revision as of 14:27, 29 December 2018

    1. Compiling custom kernel modules ##
      1. Wlan rtl8192cu ###

I ran into a problem with one of my wifi dongles (see: https://ubuntuforums.org/showthread.php?t=2325802). So I needed to recompile the module.

Prerequesites: install rpi-source

sudo wget https://raw.githubusercontent.com/notro/rpi-source/master/rpi-source \ 
-O /usr/bin/rpi-source && \
sudo chmod +x /usr/bin/rpi-source && \
/usr/bin/rpi-source -q --tag-update

rpi-source 

Then install the necessary files (in my case for the rtl8182cu wlan chip):

# sudo apt-get install --reinstall linux-headers-$(uname -r) - NOT WORKING linux-headers-generic build-essential git dkms
sudo apt-get install --reinstall  linux-headers-generic build-essential git dkms
git clone https://github.com/pvaret/rtl8192cu-fixes.git
sudo dkms add ./rtl8192cu-fixes
sudo dkms install 8192cu/1.10
echo "blacklist rtl8192cu" | sudo tee -a /etc/modprobe.d/blacklist.conf