View Single Post
Old 07-20-2005   #1 (permalink)
King_Ice_Flash
Alien Paranoid Stumbler
 
King_Ice_Flash's Avatar
 
Join Date: May 2003
Location: WI
Posts: 2,624
Orinoco 0.13e Fedora Core 4 FC4 Kismet Howto

Install FC4 using the packages and installation method listed here, however
I would reccomend using KDE instead of GNOME:
http://tipsybottle.com/technology/wi...HOWTO-v3.shtml


#yum update
#yum install glib-devel
#reboot

ORINOCO DRIVERS:
http://www.projectiwear.org/~plasmahh/orinoco.html
download orinoco-0.13e-SN-8.tar.bz2
#tar -xvjf orinoco-0.13e-SN-8.tar.bz2
#make
#make install
#cp -r /lib/modules/2.6.12-1.1398_FC4/kernel/drivers/net/wireless wireless.bak/
#cd orinoco-0.13e-SN
#cp *.ko /lib/modules/2.6.12-1.1398_FC4/kernel/drivers/net/wireless/
#reboot
#iwpriv eth1
You should see monitor mode listed

IMAGEMAGICK
http://imagemagick.sourceforge.net/
ImageMagick-6.2.3-4.tar.gz
#tar -xzf ImageMagick-6.2.3-4.tar.gz
#./configure
#make
#make install

SUBVERSION
http://subversion.tigris.org
subversion-1.2.1.tar.gz
#tar -xzf subversion-1.2.1.tar.gz
#./configure
#make
#make install

ETHEREAL
#yum install pcre-devel
#yum install net-snmp-devel
#cd /usr/src
#tar -xzf ethereal-0.10.11.tar.gz
#./configure --with-ssl
#make
#make install
Edit the file "/etc/ld.so.conf" and add the path to "/usr/local/lib". This way Kismet can find the path to the "libwiretap.so.0" library.
#ldconfig

Gpsdrive
http://www.gpsdrive.cc/download.shtml
download gpsdrive-2.10pre2.tar.gz
tar -xzf gpsdrive-2.10pre2.tar.gz
download fix_gpssql_escape.patch.txt from http://netstumbler.org/showthread.php?t=16476 or from the gpsdrive mailing list

edit the file configure file for gpsdrive

on line 34 it shows this:

echo "Using $CC compiler"

if test "$CC" = "gcc" ; then

if $CC -dumpversion|egrep -q "^3\.*"; then
echo "GCC ok"
else
echo "*****************************************"
echo "You need a gcc >= 3.x to compile GpsDrive"


Change line 34 to look like this:

if test $CC -dumpversion|egrep -q "^[34]\.*"; then

#patch -p0 -l < newfixkismetescape.patch.txt
#./configure
#make
#make install
#mysql < create.sql
#gpsdrive
setup Gpsdrive Preferences, check Use MySql

Alternatively, you can use a recent CVS release of GpsDrive which already includes the MySQL patch and compiles using GCC 4.X


KISMET
#svn co http://svn.kismetwireless.net/code/trunk kismet-devel
#cd kismet-devel
#./configure --with-ethereal=/usr/src/ethereal-0.10.11
#make dep
#make
#make suidinstall

CONFIGURE KISMET
Configure Kismet according to Ritchie's Tipsybottle guide:
http://tipsybottle.com/technology/wi...HOWTO-v3.shtml
__________________
"Yeah," said a voice from under the table, "you go to pieces so fast people get hit by the shrapnel."

Last edited by King_Ice_Flash : 05-18-2006 at 04:41 PM.
King_Ice_Flash is offline   Reply With Quote