Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2008-05-16 22:54:20
Size: 1311
Editor: c-71-236-165-100
Comment: getting kismet to run on a mostly stock asus eee
Revision 7 as of 2008-05-26 20:29:35
Size: 2737
Comment: added external display hacking
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
''The [[http://en.wikipedia.org/wiki/Asus_eee | Asus EEE]]is an Intel based compact laptop that comes out of the box with Xandros Linux. Here are some ways the PTP is using it for our purposes ''

'''Wardriving , Site Survey, Network Maps'''
Line 8: Line 12:
 * Switch over to Advanced Mode by following the steps at[[javascript:void(0);/*1211006147680*/|http://wiki.eeeuser.com/howto:getkde]]  * Switch over to Advanced Mode by following the steps at [[http://wiki.eeeuser.com/howto:getkde |http://wiki.eeeuser.com/howto:getkde]]
Line 33: Line 37:
source=madwifi_g.wifi0,wifi0 source=madwifi_g,wifi0,wifi0
Line 53: Line 57:

== Presentations with external display ==

This possibly applies to any suitably equipped machine with xrandr support. This is the incantation I use to enable and use the external display using eeebuntu (circa late May 2008):

 * Because X autoconfigures by default during X startup, the maximum screen size will be too small if you startup X without a display attached. So, to override that, add a SubSection to your /etc/X11/xorg.conf:
 {{{
Section "Screen"
    ...
    SubSection "Display"
        Depth 24
        Virtual 1600 1200 # or whatever you think is generous enough
    EndSubSection
EndSection
}}}

 * With X running, attach your external device

 * Then:
 {{{
xrandr -q
xrandr --output VGA --auto
}}}

 * If you are annoyed by your bouncing avant-window-navigator being in the wrong place, just restart it:
 {{{
killall avant-window-navigator ; avant-window-navigator >/dev/null 2&>1 &
}}}

 * To turn off the external video and return your display to something more normal feeling:
 {{{
xrandr --output VGA --off
xrandr --output LVDS --auto
killall avant-window-navigator ; avant-window-navigator >/dev/null 2&>1 &
}}}

The Asus EEEis an Intel based compact laptop that comes out of the box with Xandros Linux. Here are some ways the PTP is using it for our purposes

Wardriving , Site Survey, Network Maps

The Asus EEE PC 7XX and 9XX come stock with

  • 802.11b/g Wi-Fi mini PCI express card: Atheros AR5BXB63
  • Xandros Linux

Until there is a stable distro with stable drivers for the Atheros here is how to get Kismet running on a stock EEE

  • Switch over to Advanced Mode by following the steps at http://wiki.eeeuser.com/howto:getkde

  • Add this to /etc/apt/sources.list
    • ####Only uncomment when grabbing deb packges not in the officail
      ###repos.Never upgrade with this uncommented.
      deb http://http.us.debian.org/debian stable main contrib non-free
  • Close the file and do an update
    • sudo apt-get update
  • Install Kismet
    • sudo apt-get install kismet
  • Install GPSD if you need
    • sudo apt-get install gpsd
  • Edit /etc/kismet/kismet.conf to add
    • source=madwifi_g,wifi0,wifi0
  • While you are in there enable the gps if you have one set up
    • gps=true 
  • Close the file
  • Set up two scripts to run , one to run Kismet and one to Reset the wireless config to run for normal use
    • vi kismetup.sh 
      sudo wlanconfig ath0 destroy
      sudo kismet
      vi kismetdown.sh
      sudo wlanconfig ath0 create wlandev wifi0 wlanmode sta

Presentations with external display

This possibly applies to any suitably equipped machine with xrandr support. This is the incantation I use to enable and use the external display using eeebuntu (circa late May 2008):

  • Because X autoconfigures by default during X startup, the maximum screen size will be too small if you startup X without a display attached. So, to override that, add a SubSection to your /etc/X11/xorg.conf:

    Section "Screen"
        ...
        SubSection "Display"
            Depth   24
            Virtual 1600 1200 # or whatever you think is generous enough
        EndSubSection
    EndSection
  • With X running, attach your external device
  • Then:
    xrandr -q
    xrandr --output VGA --auto
  • If you are annoyed by your bouncing avant-window-navigator being in the wrong place, just restart it:
    killall avant-window-navigator ; avant-window-navigator >/dev/null 2&>1 & 
  • To turn off the external video and return your display to something more normal feeling:
    xrandr --output VGA --off
    xrandr --output LVDS --auto
    killall avant-window-navigator ; avant-window-navigator >/dev/null 2&>1 &

AsusEEE (last edited 2008-05-26 20:29:35 by RussellSenior)