Author: mgoulish
Date: Thu Mar  7 19:46:52 2013
New Revision: 1454051

URL: http://svn.apache.org/r1454051
Log:
initial checkin

Added:
    qpid/proton/trunk/docs/quick_start_linux.markdown

Added: qpid/proton/trunk/docs/quick_start_linux.markdown
URL: 
http://svn.apache.org/viewvc/qpid/proton/trunk/docs/quick_start_linux.markdown?rev=1454051&view=auto
==============================================================================
--- qpid/proton/trunk/docs/quick_start_linux.markdown (added)
+++ qpid/proton/trunk/docs/quick_start_linux.markdown Thu Mar  7 19:46:52 2013
@@ -0,0 +1,51 @@
+Linux Quick Start
+==============================================
+
+
+On a Linux system, these instructions take you from
+zero to running your first example code.  You will 
+need root privileges for one of the commands.
+
+
+
+
+Prerequisite Packages
+---------------------------------
+
+For a minimum build, you will need packages installed on your
+box for :
+
+    subversion
+    gcc
+    cmake
+    libuuid-devel
+
+
+
+Quick Start Commands
+---------------------------
+
+    mkdir ~/proton
+    cd ~/proton
+    svn co http://svn.apache.org/repos/asf/qpid/proton/trunk
+    cd ./trunk
+    mkdir ./build
+    cd ./build
+    cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+    make all
+    # Become root and go to your build dir.
+    make install
+    # Stop being root.
+    # Now let's see if it works.
+    cd ~/proton/trunk/examples/messenger/c
+    cmake .
+    make
+    ./recv &
+    ./send
+    # You're done !
+    # The output you should see:
+
+        Address: amqp://0.0.0.0
+        Subject: (no subject)
+        Content: "Hello World!"
+



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to