Howtos - Hack on Linux » History » Revision 5
Revision 4 (Greg Burri, 04/18/2011 06:13 PM) → Revision 5/12 (Greg Burri, 04/29/2011 03:46 PM)
h1. Howtos - Hack on Linux h2. ArchLinux You need to : # Install required programs ## Git : pacman -S git ## protobuf : pacman -S protobuf ## Qt creator : pacman -S qtcreator # Git clone the repository ## _git://dev.d-lan.net/d-lan.git_ if you just want clone the repository. ## _ssh://git@dev.d-lan.net/d-lan.git_ if you have a full access (read+write). h2. Ubuntu (Natty Narwhal) # Add @ppa:kubuntu-ppa/backports@ to Software Sources # Get required tools<pre>sudo apt-get install g++ git qt4-qmake qt4-dev-tools qtcreator libprotobuf-dev</pre> sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade # to force the use of latests Qt libs cd /tmp wget http://protobuf.googlecode.com/files/protobuf-2.3.0.tar.bz2 tar -jxvf ./protobuf-2.3.0.tar.bz2 cd protobuf-2.3.0 ./configure --prefix=/usr make make check sudo make install </pre> # Get source code<pre> git clone git://github.com/Ummon/D-LAN.git git://dev.d-lan.net/d-lan.git d-lan cd D-LAN/application d-lan/application ./0.regen_all.sh </pre>