forked from xtr4nge/giskismet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.txt
49 lines (32 loc) · 1002 Bytes
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
####################################
GISKismet Install Directions
####################################
Quick Install - simply run from this directory
To Install GISKismet Properly ( make sure you have the needed deps)
perl Makefile.PL
make
** Then as root **
make install
You will need to install the following modules for GISKismet to work
DBI
XML::LibXML
DBD::SQLite
If you are running Ubuntu, I suggest you use the packages whenever
possible.
sudo apt-get install \
libxml-libxml-perl \
libdbi-perl \
libdbd-sqlite3-perl
If you are running FreeBSD here are the packages:
pkg_add -r p5-DBI
pkg_add -r p5-DBD-SQLite
pkg_add -r p5-XML-LibXML
To install a module using CPAN
$ sudo cpan
# make sure you have the latest version of CPAN installed
cpan> install CPAN
cpan> install Bundle::CPAN
# then when you see the cpan> prompt type install and the name of
# the module
cpan> install XML::LibXML
cpan> install DBI