1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-25 14:44:09 +00:00
rtl8812au/dkms-install.sh

35 lines
734 B
Bash
Raw Normal View History

2018-07-02 17:20:53 +00:00
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "You must run this with superuser priviliges. Try \"sudo ./dkms-install.sh\"" 2>&1
exit 1
else
echo "About to run dkms install steps..."
fi
2019-02-15 20:17:32 +00:00
DRV_DIR=rtl8812au
DRV_NAME=rtl8812au
2018-07-02 17:20:53 +00:00
DRV_VERSION=5.2.20.2
2019-02-15 20:17:32 +00:00
cp -r $(pwd) /usr/src/${DRV_NAME}-${DRV_VERSION}
2018-07-02 17:20:53 +00:00
dkms add -m ${DRV_NAME} -v ${DRV_VERSION}
dkms build -m ${DRV_NAME} -v ${DRV_VERSION}
dkms install -m ${DRV_NAME} -v ${DRV_VERSION}
RESULT=$?
echo "Finished running dkms install steps."
2019-03-28 18:13:09 +00:00
if echo "net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1" >> /etc/sysctl.conf; then
echo "Disabled IPv6 Successfuly "
else
echo "Could not disable IPv6"
fi
2018-07-02 17:20:53 +00:00
exit $RESULT