Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Native install Linux (by Oscar!)

Ashfaq edited this page Mar 24, 2015 · 1 revision

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

wget https://sourcery.mentor.com/GNUToolchain/package10931/public/arm-none-linux-gnueabi/arm-2012.09-64-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2

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

Clone this wiki locally