-
Notifications
You must be signed in to change notification settings - Fork 3
Native install Linux (by Oscar!)
For a clean Debian install
install c++ compilers and essential things
sudo apt-get install build-essential cmake && sudo apt-get install Linux-headers-$(uname -r)
optional (if on vmware)
install vmware tools, guides are everywhere on internet.
install the needed packeges to build the project (some of these packages may differ, depending on target system)
sudo apt-get install libcv-dev libhighgui-dev qt4-dev-tools qt4-qmake libglut3-dev libqt4-dev libqwt5-qt4-dev libqwt5-qt4 libqt4-opengl-dev libdb4.6-dev libzip-dev libboost1.42-dev python ccache
clean up installation
sudo apt-get clean && sudo apt-get autoremove
get and install cross compiler
sudo tar -xvf arm-2012.09-64-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2 -C /opt/ && rm arm-2012.09-64-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
get and install the pandaboard precompiled (saves hours of cross compiling)
wget (this file is not hosted yet, will do this asap)(I have it on my computer, ask me if you want it /Oscar)
sudo tar -xvf pandaboard.tar.bz2 -C /opt/ && rm pandaboard.tar.bz2