Just to share the solution that allowed me to install the D-Link AC600 DWA-172 on Ubuntu 16.04.1 LTS. Kernel: 4.4.0-31-lowlatency
Check your hardware ID by running
lsusbto confirm you have the same adapter.ID 2001:3318 D-Link Corp.In the Terminal run:
sudo apt-get install git build-essential linux-headers-generic git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git cd rtl8812auThen you'll need to edit the file
os_dep/linux/usb_intf.cto add :{USB_DEVICE(0x2001, 0x3318),.driver_info = RTL8821}, /* D-Link DWA-172 */in the
#ifdef CONFIG_RTL8821Asection.In the Terminal run:
make sudo make install sudo modprobe 8812auReboot
Note: I rebooted after the install and again after running modprobe... but I understand this was not required.
Hope that this info is helpful to others.
Take care!
Sources: http://forums.debian.net/viewtopic.php?f=7&t=121127