LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-24-2011, 02:03 PM   #1
ubuntuv
Member
 
Registered: Jan 2010
Posts: 82

Rep: Reputation: 0
Error! while installing nemesis


Hi,

I am using Ubuntu 10.10. I am facing issues when trying to install nemesis.

I installed libnet-1.0.2a from
http://packetfactory.openwall.net/li...-1.0.2a.tar.gz
using commands
./configure
make
makeinstall
It installed successfully

2.I copied nemesis from
http://packetfactory.openwall.net/pr....4beta3.tar.gz
and tried
Quote:
/nemesis-1.4beta3# ./configure
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for executable suffix...
checking for object suffix... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking to see if we can add '-Wall' to CFLAGS... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for unistd.h... yes
checking for strings.h... yes
checking for sys/socket.h... yes
checking for net/bpf.h... no
checking for sys/time.h... yes
checking for machine/endian.h... no
checking for netinet/ip_var.h... no
checking for inet_aton... yes
checking for getopt... yes
checking for strsep... yes
checking for inet_ntoa in -lnsl... yes
checking for socket in -lsocket... no
checking for hstrerror in -lresolv... yes
checking for fabs in -lm... yes
checking for libnet.h... yes
checking for libnet version 1.0.2a... yes
checking for libnet_build_ip in -lnet... no

ERROR! Libnet library not found, go get it from
http://www.packetfactory.net/projects/libnet/
or use the --with-libnet-* options, if you have it installed
in unusual place
Thanks in advance.

uv
 
Old 06-25-2011, 03:31 AM   #2
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
1) The easy way : Add 'hardy' to /etc/apt/sources.list and install nemesis
with Synaptic or 'sudo apt-get install nemesis
Code:
deb http://76.73.4.58/ubuntu/ hardy-updates main
deb http://76.73.4.58/ubuntu/ hardy universe
deb http://security.ubuntu.com/ubuntu hardy-security main
deb http://security.ubuntu.com/ubuntu hardy-security universe
2) It is also possible to download a usable libnet0 1.0.2a
libnet0 http://packages.ubuntu.com/hardy/libnet0
i386 http://se.archive.ubuntu.com/ubuntu/....2a-7_i386.deb
libnet0-dev http://packages.ubuntu.com/hardy/libnet0-dev
i386 http://se.archive.ubuntu.com/ubuntu/....2a-7_i386.deb

3) Building libnet manually: A 1.7 MB patch is required: libnet0_1.0.2a-7.diff.gz
http://archive.ubuntu.com/ubuntu/poo...0.2a-7.diff.gz
cd Libnet-1.0.2a/ && zcat libnet0_1.0.2a-7.diff.gz | patch -p1 &&
./configure --prefix=/usr && make
... Then you get the shared library: libnet.so@ libnet.so.0@ libnet.so.0.0.0
 
0 members found this post helpful.
Old 06-27-2011, 06:36 AM   #3
ubuntuv
Member
 
Registered: Jan 2010
Posts: 82

Original Poster
Rep: Reputation: 0
Error! while installing nemesis

Added 'hardy' to /etc/apt/sources.list using 'sudo gedit /etc/apt/sources.list' command
deb http://76.73.4.58/ubuntu/ hardy-updates main
deb http://76.73.4.58/ubuntu/ hardy universe
deb http://security.ubuntu.com/ubuntu hardy-security main
deb http://security.ubuntu.com/ubuntu hardy-security universe[/code]

But now also it shows same error when I try to install Nemesis.
 
Old 06-27-2011, 10:07 AM   #4
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
When the 'hardy' repos have been added :

1) sudo apt-get update

2) sudo apt-get install nemesis
 
1 members found this post helpful.
Old 06-28-2011, 04:39 AM   #5
ubuntuv
Member
 
Registered: Jan 2010
Posts: 82

Original Poster
Rep: Reputation: 0
I couldnt install same error.I am using the command "./configure" for installing Nemesis

/nemesis-1.4beta3# ./configure


Thanks
uv
 
Old 06-28-2011, 06:03 AM   #6
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
The install command used to install nemesis-1.4beta3 is :

sudo apt-get update && sudo apt-get install nemesis



And if you really want to build nemesis manually yourself :
sudo apt-get update
&& sudo apt-get install libnet0-dev libpcap0.8-dev libdnet-dev
&& cd nemesis-1.4beta3/ && ./configure && make

.
 
2 members found this post helpful.
Old 06-28-2011, 06:54 AM   #7
ubuntuv
Member
 
Registered: Jan 2010
Posts: 82

Original Poster
Rep: Reputation: 0
Successfully installed.

Thanks,
uv
 
  


Reply



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
nemesis instln nkd Linux - Software 2 08-04-2008 11:19 AM
usercounter ipsoofing, nemesis rtzui Linux - Networking 0 12-22-2007 04:54 AM
Nemesis Factor SlowCoder General 1 12-10-2007 02:44 PM
Nemesis - Legit Use illiadum Linux - Security 2 08-25-2007 05:45 PM
Please help me in installing NEMESIS ON UBUNTU krisvamc Ubuntu 9 04-20-2007 05:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:02 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