Skip to content

Instantly share code, notes, and snippets.

@Lauszus
Created April 7, 2018 18:31
Show Gist options
  • Save Lauszus/f9287053df7ac1f5aa29b021397944a5 to your computer and use it in GitHub Desktop.
Save Lauszus/f9287053df7ac1f5aa29b021397944a5 to your computer and use it in GitHub Desktop.
Script for installing 8192eu kernel module on a Raspberry Pi
#!/bin/bash -e
kernel=$(uname -r | tr -d '+')
build=${build:-$(uname -v | awk '{print $1}' | tr -d '#')}
tarfile=8192eu-$kernel-$build.tar.gz
wget http://downloads.fars-robotics.net/wifi-drivers/8192eu-drivers/$tarfile
tar xzf $tarfile
./install.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment