Ubuntu 9.04 + Engenius EUB-362 EXT [SOLVED]
Posted by Kelvin on 10 Feb 2010 | Tagged as: programming, Ubuntu
Recently bought an Engenius Wireless LAN USB adapter EUB-362 EXT.
There are a number of postings on Ubuntu Forums about trying to get this working on Ubuntu, with no avail. Keenan Systems from whom I bought the adapter has an out-dated howto for getting it working on Ubuntu.
Here are the definitive steps to getting it working on Ubuntu 9.04. May work with other Ubuntu versions too.
sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9
cd /tmp
wget http://www.engeniustech.com/resources/EUB862_362_XPV2.1.zip
unzip EUB862_362_XPV2.1.zip
wine EUB862_362_XPV2.1.exe
Run the driver installation using wine. Then..
cd ~/.wine/drive_c/windows/system32
sudo ndiswrapper -i net5523.inf
Connect EUB-362 to your computer.
ndiswrapper -l
should produce
net5523 : driver installed
device (0CF3:0002) present
That's it. Enjoy your new wlan adapter!
TokyoCabinet Linux Install Script
Posted by Kelvin on 06 Dec 2009 | Tagged as: programming, Ubuntu
Updated on Mar 22 2011 for latest versions
export JAVA_HOME=/usr/lib/jvm/current #changeme! export MYJAVAHOME=$JAVA_HOME wget http://1978th.net/tokyocabinet/tokyocabinet-1.4.47.tar.gz tar -zxvf tokyocabinet-1.4.47.tar.gz cd tokyocabinet-1.4.47 ./configure --enable-off64 --prefix=/usr make && sudo make install cd .. wget http://1978th.net/tokyocabinet/javapkg/tokyocabinet-java-1.24.tar.gz tar -zxvf tokyocabinet-java-1.24.tar.gz cd tokyocabinet-java-1.24 ./configure --prefix=/usr make && sudo make install cd ..
You may need bzip2-devel + zlib (RH/Fedora) or libbz2-dev + zlib1g-dev (Debian/Ubuntu) installed before running configure.
Don't worry about the second bit if you don't need the java bindings.
Running Hadoop On Ubuntu Linux (Single-Node Cluster) – Michael G. Noll
Posted by Kelvin on 01 Jun 2008 | Tagged as: blogmark, Ubuntu
http://www.michael-noll.com/wiki/Running_Hadoop_On_Ubuntu_Linux_(Single-Node_Cluster)
Comments Off on Running Hadoop On Ubuntu Linux (Single-Node Cluster) – Michael G. Noll