Changes between Version 5 and Version 6 of UNS/2
- Timestamp:
- 04/07/11 19:46:23 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UNS/2
v5 v6 19 19 = Compile libraries = 20 20 21 22 21 To build you need built-tools/gcc/etc. 23 22 … … 25 24 26 25 Just do: 27 28 29 26 30 27 {{{ … … 34 31 $ cd clann 35 32 $ make 33 }}} 36 34 35 = User side installation instructions (SVN and virtualenv) = 36 37 This 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 37 45 }}} 46 47 Now 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 58 The 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 }}}
