1. First: add a repository to etc/apt/sources.list
1
sudo sh -c 'echo "deb https://<my.favorite.cran.mirror>/bin/linux/ubuntu trusty/"'
Install wifi adapter(A6 100)
1 2 3 4 5 6
## Download http://github.com/abperiasamy/rtl8812AU_8821AU_linux cd Download/rtl8812AU_8821AU_linux-master ## sudo make clean sudo make sudo make install sudo modprobe 8812au
## for people who using matconvnet and mxnet the first toolbox need ## g++ 4.7 and the second need g++ 4.8, thus sometimes we need to switch between them ...
## First erased the current update-alternatives setup for gcc and g++:
## Install Alternatives ### Symbolic links cc and c++ are installed by default. We will install symbol links ### for gcc and g++, then link cc and c++ to gcc and g++ respectively.
sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30 sudo update-alternatives --set cc /usr/bin/gcc
sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30 sudo update-alternatives --set c++ /usr/bin/g++
## Finally, Configure Alternatives ### The last step is configuring the default commands for gcc, g++. It's easy to switch ### between 4.7 and 4.8 interactively: