Skip to content

Instantly share code, notes, and snippets.

@Lauszus
Created February 1, 2018 13:12
Show Gist options
  • Save Lauszus/ed55f407e26ba8274943d6e76d347f42 to your computer and use it in GitHub Desktop.
Save Lauszus/ed55f407e26ba8274943d6e76d347f42 to your computer and use it in GitHub Desktop.
Small script for downloading and installing the drivers for the Realtek RTL8192EU WiFi adapter from http://fars-robotics.net
#!/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://fars-robotics.net/$tarfile
tar xzf $tarfile
./install.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment