So I'm trying to get my Realtek RTL8812AU USB Wireless to work. I came across this package for it: https://github.com/gnab/rtl8812au
I'm about to install it, but it says it's built for x86 and I am running Ubuntu 15.10 x64. I looked for CONFIG_PLATFORM for x64 architecture in the Makefile and I couldn't find any (but, as my name suggests, i'm a newb).
So, I set about trying to install i386 libraries. And this forum: How to run 32-bit app in Ubuntu 64-bit? Told me to do the following:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
Using aptitude I saw a lot of dependencies and conflicts with these packages... should I be doing this? Are these old packages?
Thank you in advance for your help.