Skip to content

Instantly share code, notes, and snippets.

@nocturnaltortoise
Last active August 29, 2015 14:17
Show Gist options
  • Save nocturnaltortoise/9c1b741d93b10aa4a19c to your computer and use it in GitHub Desktop.
Save nocturnaltortoise/9c1b741d93b10aa4a19c to your computer and use it in GitHub Desktop.
Ethernet Driver Reinstaller for Realtek rtl8168
#!/bin/sh
(( EUID != 0 )) && exec sudo -- "$0" "$@"
cd /opt/r8168-8.039.00/
make clean modules
make install
depmod -a
insmod ./src/r8168.ko
echo "r8168" >> /etc/modules
@nocturnaltortoise
Copy link
Author

Note: This is a reinstaller - you'll need to download the right driver for the ethernet card, and extract it to /opt.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment