Skip to content

Instantly share code, notes, and snippets.

View ajeetrai7's full-sized avatar
🎯
Focusing

ajeetrai707 ajeetrai7

🎯
Focusing
View GitHub Profile

To install the module for the RTL8723DE chipset, first determine your kernel using uname -r if your kernel is lower than 4.11, do

sudo apt-get install build-essential dkms git
git clone -b 4.10-down https://github.com/jeremyb31/rtl8723de.git
sudo dkms add ./rtl8723de
sudo dkms install rtl8723de/5.1.1.8_21285.20171026_COEX20170111-1414

Then reboot

@ajeetrai7
ajeetrai7 / build-go.sh
Created April 25, 2019 09:44
go-build_project
#!/usr/bin/bash
WORKROOT=$(pwd)
cd ${WORKROOT}
# unzip go environment
go_env="go1.6.2.linux-amd64.tar.gz"
wget -c http://path/to/go/go1.6.2.linux-amd64.tar.gz
tar -zxf $go_env
if [ $? -ne 0 ];