Actions
Howtos - Hack on Linux » History » Revision 2
« Previous |
Revision 2/12
(diff)
| Next »
Greg Burri, 03/17/2011 12:12 AM
Howtos - Hack on Linux¶
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).
Ubuntu¶
- Add
ppa:kubuntu-ppa/backports
to Software Sources - Get required tools
sudo apt-get install g++ git qt4-qmake qt4-dev-tools sudo apt-get install update sudo apt-get install upgrade sudo apt-get install 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
- Get source code
git clone git://dev.d-lan.net/d-lan.git d-lan cd d-lan/application ./0.regen_all.sh
Updated by Greg Burri over 13 years ago · 2 revisions