Project

General

Profile

Actions

Howtos - Hack on Linux » History » Revision 4

« Previous | Revision 4/12 (diff) | Next »
Greg Burri, 04/18/2011 06:13 PM


Howtos - Hack on Linux

ArchLinux

You need to :

  1. Install required programs
    1. Git : pacman -S git
    2. protobuf : pacman -S protobuf
    3. Qt creator : pacman -S qtcreator
  2. Git clone the repository
    1. git://dev.d-lan.net/d-lan.git if you just want clone the repository.
    2. ssh:/d-lan.git if you have a full access (read+write).

Ubuntu

  1. Add ppa:kubuntu-ppa/backports to Software Sources
  2. Get required tools
    sudo apt-get install g++ git qt4-qmake qt4-dev-tools qtcreator
    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
    
  3. 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 about 13 years ago · 4 revisions