Changes between Version 5 and Version 6 of UNS/2

Show
Ignore:
Timestamp:
04/07/11 19:46:23 (2 years ago)
Author:
nopper (IP: 193.205.81.2)
Comment:

detailed installation instructions

Legend:

Unmodified
Added
Removed
Modified
  • UNS/2

    v5 v6  
    1919= Compile libraries =  
    2020 
    21  
    2221To build you need built-tools/gcc/etc. 
    2322 
     
    2524 
    2625Just do: 
    27  
    28  
    2926 
    3027{{{ 
     
    3431$ cd clann  
    3532$ make 
     33}}} 
    3634 
     35= User side installation instructions (SVN and virtualenv) = 
     36 
     37This instructions requires as additional dependency subversion and [virtualenv:http://pypi.python.org/pypi/virtualenv] to be installed on your system. First of all you have to checkout the last trunk revision from the UMIT's SVN repository: 
     38 
     39{{{ 
     40$ pwd 
     41/home/user/umit-tools/ 
     42$ virtualenv umit-env 
     43$ . umit-env/bin/activate 
     44(umit-env) $ pip install netifaces 
    3745}}} 
     46 
     47Now it is the turn for pypcap: 
     48 
     49{{{ 
     50(umit-env) $ pwd 
     51/home/user/umit-tools/ 
     52(umit-env) $ svn checkout http://pypcap.googlecode.com/svn/trunk/ pypcap-read-only 
     53(umit-env) $ cd pypcap-read-only 
     54(umit-evn) $ make 
     55(umit-env) $ python setup.py install 
     56}}} 
     57 
     58The last step is to get UMIT Network Scanner: 
     59 
     60{{{ 
     61(umit-env) $ pwd 
     62/home/user/umit-tools/ 
     63(umit-env) $ svn co http://svn.umitproject.org/svnroot/umit/network-scanner/trunk uns 
     64(umit-env) $ cd uns 
     65(umit-env) $ cd umit/clann 
     66(umit-env) $ make 
     67(umit-env) $ cd ../umit/libkeybinder/ 
     68(umit-env) $ make 
     69(umit-env) $ cd ../.. 
     70(umit-env) $ bin/umit # or sudo bin/umit 
     71}}}