diff -Nur -x '*.orig' -x '*~' scapy-2.1.0//scapy/arch/linux.py scapy-2.1.0.new//scapy/arch/linux.py
--- scapy-2.1.0//scapy/arch/linux.py	2009-12-14 16:31:55.000000000 +0100
+++ scapy-2.1.0.new//scapy/arch/linux.py	2010-02-24 13:33:46.453297258 +0100
@@ -66,7 +66,7 @@
 
 LOOPBACK_NAME="lo"
 
-with os.popen("tcpdump -V 2> /dev/null") as _f:
+with os.popen("/usr/sbin/tcpdump -V 2> /dev/null") as _f:
     if _f.close() >> 8 == 0x7f:
         log_loading.warning("Failed to execute tcpdump. Check it is installed and in the PATH")
         TCPDUMP=0
diff -Nur -x '*.orig' -x '*~' scapy-2.1.0//scapy/config.py scapy-2.1.0.new//scapy/config.py
--- scapy-2.1.0//scapy/config.py	2009-12-14 16:31:55.000000000 +0100
+++ scapy-2.1.0.new//scapy/config.py	2010-02-24 13:33:37.229297335 +0100
@@ -52,11 +52,11 @@
 
     
 class ProgPath(ConfClass):
-    pdfreader = "acroread"
+    pdfreader = "xpdf"
     psreader = "gv"
     dot = "dot"
     display = "display"
-    tcpdump = "tcpdump"
+    tcpdump = "/usr/sbin/tcpdump"
     tcpreplay = "tcpreplay"
     hexedit = "hexer"
     wireshark = "wireshark"
