2016, December, 20

vlan(802.1q) in linux (centos)

 

1. Check that the module is loaded by running the command: 
#lsmod | grep 8021q
2. If the module is not loaded, proceed to run the following command to load it: 
#modprobe 8021q 
3. Proceed to configure your physical interface in /etc/sysconfig/network-scripts/ifcfg-eth1. For example,
DEVICE=eth1
TYPE=Ethernet
BOOTPROTO=none
ONBOOT=yes
Read More
2015, July, 08

Voice Recognition Software for Raspberry Pi

Install Instructions

(this requires git)
Here are the dependencies required to run and build:
sudo apt-get install libboost1.50-dev libboost-regex1.50-dev youtube-dl axel curl xterm libcurl4-gnutls-dev mpg123 flac sox

 sudo apt-get install git-core

git clone git://github.com/StevenHickson/PiAUISuite.git

cd PiAUISuite/Install/
./InstallAUISuite.sh

Read More