LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-03-2011, 12:37 AM   #1
hogar.strashni
Member
 
Registered: Dec 2007
Distribution: cp6
Posts: 44

Rep: Reputation: 2
CentOS problem with libpcap and tcpdump


Hi there!
In order to install tcpdump-4.1.1 I had to install libpcap-1.1.1. They said on the tcpdump's site, "for CentOS install it from a source", so I did it.

First bell started ringing when I noticed that built library was still in the directory where I extracted .tar.gz, and not in the /usr/lib64/
When I installed tcpdump from source, and tried to start it, instead of tcpdump4.1.1 it was still 3.9.4 with 0.9.4 libpcap.

I noticed no errors. I even tried to grep errors. This is all I got.
Quote:
[root@localhost tcpdump-4.1.1]# ./configure | grep error
configure: WARNING: The SMB printer may have exploitable buffer overflows!!!
config.status: WARNING: Makefile.in seems to ignore the --datarootdir setting
[root@localhost tcpdump-4.1.1]# make | grep error
[root@localhost tcpdump-4.1.1]# make install |grep error
[root@localhost tcpdump-4.1.1]# tcpdump --help
tcpdump version 3.9.4
libpcap version 0.9.4
Of course - I installed both with sequence ./configure -> make -> make install, all after extracting it from .tar.gz., like I said installation went smooth, so it must be that I forgot to do something else in between. But, what?
Any help?!
PLEASE

Last edited by hogar.strashni; 02-03-2011 at 12:39 AM.
 
Old 02-03-2011, 02:15 AM   #2
goodhombre
Member
 
Registered: Mar 2010
Location: Ungheni, Rep. Moldova
Distribution: Ubuntu
Posts: 89

Rep: Reputation: 22
Hi,

Try :
Code:
/usr/local/sbin/tcpdump --help
If there is now such file search with
Code:
whereis tcpdump
 
1 members found this post helpful.
Old 02-05-2011, 05:23 AM   #3
hogar.strashni
Member
 
Registered: Dec 2007
Distribution: cp6
Posts: 44

Original Poster
Rep: Reputation: 2
hombre, you're truly good! Told me just what I need to hear! Now I need some more help

For those who might be experiencing same problem, and hopefully for some developer who is about to see this. I located libpcap, and haven't done the same with tcpdump. So, when I did what you said goodhombre, I found that:
1. installing newer version haven't removed older one(I know I'm stupid I thought it would detect older version and upgrade it), so I had two versions of tcpdump(/usr/sbin and /usr/local/sbin), and each time I issued the command older version had been invoked. So that was inital problem...
2. I had to remove both versions and than reinstall the new version. I must notice I had problem uninstalling tcpdump because "make uninstall" didn't delete all tcpdump files, so I had to do it manually
3. Installing tcpdump to /usr/sbin and libpcap to /usr/lib64 caused error I can't quote, but is something like: (!no path!)tcpdump: Couldn't open object file (!no path!)`libpcap.so.1': no such file. Recipe with linking mentioned by @nx5000 in topic "problem with libpcap" didn't work for me either.

REMEDY: I finally uninstalled both tcpdump and libpcap, cleaned system of tcpdump files(best I could) and reinstalled it to predefined locations. One more notice is that installing tcpdump to the predefined location without cleaning the system of rests of earlier installation caused the fail as well.

PROBLEM: I can only start tcpdump by entering absolute path /usr/local/sbin/tcpdump. If I type just tcpdump, error message appears that says it can't find tcpdump in /usr/sbin
Problem is that both "/usr/local/sbin" and "/usr/sbin/" are in the $PATH, so I'm wondering why does system insist on /usr/sbin path, and how can I change that, except by creating link placed in the /usr/sbin.
Thanks in advance
 
Old 02-05-2011, 05:55 AM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by hogar.strashni View Post
hopefully for some developer who is about to see this.
Nothing as easy as that. If you truly want to contribute something you must email their user or development mailing list or file a bug report, not post here. In the end it's PEBCAK and not a problem with the OS or any userland packages.

Now confining alien package versions to a different subtree like /usr/local and then exporting the required LD_LIBRARY_PATH (or use ldconfig) so new tcpdump could pick up new libraries should work, but you could have avoided all of this if you would just have created the required packages then upgrade them instead of installing from source and destabilizing and polluting your system in the process.


Quote:
Originally Posted by hogar.strashni View Post
I can only start tcpdump by entering absolute path /usr/local/sbin/tcpdump.
If you didn't clear the system using package management then there may be dangling symlinks (unlikely), user-configured shell aliases (unlikely) or scripted location replacements (highly unlikely) pointing to the previous binary location. More likely, if in your user account `echo $PATH` shows to have /usr/sbin before /usr/local/sbin (which makes sense efficiency-wise), then the shell will try to exec the binary in /usr/sbin as long as it's hashed in your current shell session. Logging out and back in should fix hashing but exporting your PATH statement, placing /usr/local/sbin before /usr/sbin, should fix execution problems.
 
2 members found this post helpful.
Old 02-09-2011, 07:44 AM   #5
hogar.strashni
Member
 
Registered: Dec 2007
Distribution: cp6
Posts: 44

Original Poster
Rep: Reputation: 2
You were right, all I needed to do is to logout, so hash could be emptied. Everything works just fine now.

Quote:
you could have avoided all of this if you would just have created the required packages then upgrade them instead of installing from source
I searched the web for how to make rpm from source and easily found a lot of materials about it. Thank you very much for the hint
Quote:
In the end it's PEBCAK and not a problem with the OS or any userland packages
I didn't think it was OS, I thought it was person in tcpdump team responsible for "make". All right, maybe I am P that EBCAK , but shouldn't "./configure && make && make uninstall" clean the system of ALL the files "make install" injected during installation?!? What did I miss, or did wrong, so it is my fault, that it wasn't uninstaled properly???
 
  


Reply

Tags
centos55, libpcap, make, makefile, tcpdump



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] How to install libpcap version 1 on centos 5 vishesh Linux - Server 4 10-28-2010 10:30 AM
"cannot stat `libpcap.so.1.0.0':" error during make of Libpcap 1.0.0 on Fedora 9 myriad_moments Linux - Software 4 04-09-2010 02:02 AM
Incorrect source/destination ports when reading tcpdump data with libpcap Nylex Programming 2 06-21-2007 04:10 AM
problem with libpcap ARCIS_house Linux - Newbie 9 06-05-2006 12:41 AM
libpcap 0.8.3 installation problem open2rock Linux - Software 3 05-15-2004 01:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:18 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration