General :: Can Specify The Path To Libpcap When Configuring/making/installing
Dec 9, 2010
I'm running Ubuntu 10.04.1 and am trying to get packet capturing working for my Bluetooth dongle using hcidump.From what I've read, libpcap must be compiled to enable Bluetooth sniffing and given that hcidump isn't finding a single packet, I'm guessing the version Ubuntu has installed for me isn't compiled with bluetooth support.So I downloaded a newer version of libpcap and installed the bluez header files. Configured libpcap and it gave a "Yes" for bluetooth support. It is now installed and sitting in /usr/local/lib/. Now I'm trying to compile hcidump to use this lib rather than the system default but I can't figure out how...I've read that GCC can be passed the -lpcap flag to set the path but I haven't figured out how to do this.
View 1 Replies
ADVERTISEMENT
Jun 20, 2010
I am trying to install libpcap and tcpdump, but even if I have already installed Flex, as the terminal tells me to do. What else could I do?
Code:
configure: error: Your operating system's lex is insufficient to compile libpcap. Flex is a lex replacement that has many advantages, including being able to compile libpcap. For more information, see [URL].
View 1 Replies
View Related
Jul 25, 2010
I am trying to install atheros AR5007EG on my toshiba laptop -i figured out that best way to install this wireless card is through madwifi -while configuring madwifi i get this error
I am posting the output of different commands so you can understand better -i manually tried to link the build directories to kernel-source which failed - i am not sure exactly what kernel source is and how i can link to kernel source -
My output:
View 1 Replies
View Related
Apr 6, 2010
I am trying to install Libpcap version 1.0.0 on Fedora 9. During 'make, i get the following error:
"/usr/bin/install: cannot stat `libpcap.so.1.0.0': No such file or directory
make: *** [install] Error 1"
View 4 Replies
View Related
Jul 8, 2011
I recently made a mistake and made my PATH variable nothing. I didn't notice this problem until I rebooted my computer and it would not let me login (the normal graphical login). I went into the terminal and found that my PATH variable was wrong so I edited my .bashrc file, adding Code:export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gamesthis seemed to fix the problem in the terminal now I can access all of the binaries normally, but I still can login with the graphical login and I still cant startx.
View 1 Replies
View Related
Nov 11, 2009
I've been tasked with setting up a RHEL FTP server to mirror one we currently have. From what I've read, I need to install and configure VSFTPD and then configure IPTables. From what I've been able to come up with, I need to follow the steps in this article to install and setup VSFTPD. Is this a good complete article to follow you think?Also, how do I copy the iptables config from that server to my new one? I think that iptables on our current server only allows certain IPs or blocks certain IPs (not sure which), so I need to have it do that on my new server as well
View 14 Replies
View Related
Jun 3, 2011
Whenever I need to install something on Xentos, I found rpm or tar balls. I want to know what is difference between two. Also if I need to install something for php but I have installed on different folder, how can i give that php path while using configure command in newly downloaded tar.gz package ?
View 2 Replies
View Related
Mar 1, 2011
Installing Ubuntu Studio failed automatic configuring the network so I need configure it manually. The computer ask for a DOMAIN NAME but I never had configured any Domain. Actualy I had another ubuntu computer. I know the mane of that computer but how can I get the DOMAIN NAME from the other computer?
View 1 Replies
View Related
Jul 15, 2010
These days i try make a simple sniffer for a embedded system. and it need the function of dump all the packets into a file, which can be read by wireshark..etc. First i copy a code called simplesniffer.c from the Internet,and and now I want to add the dumpfile funtion to it. i find some problems.Quote:
/* Come from ---- http://blog.chinaunix.net/u/24474/showart_226419.html */
/* simplesniffer.c */
#include <stdio.h>
[code]...
View 2 Replies
View Related
Jan 17, 2010
I am running a server which is hosting a site where members can upload videoclips. I noticed that upon upload a thumbnail is not created for the videoclip. I found out that ffmpeg needed to be properly installed and in my case ffmpeg-php as the site runs on php. So far so good. I followed the instructions found somewhere to install ffmpeg-php but stall at the command: dot slash configure && make The error I get is:
checking for egrep... grep -E
checking for a sed that does not truncate output... slash slash bin slash sed
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
I presume it's because gcc is missing. how I can start tackling the problem and ultimately get gcc running so I can install the ffmpeg? I am really sorry I was hoping to elaborate a bit more but I get an error: You are only allowed to post URLs to other sites after you have made 15 posts or more. so I guess I need to wait and describe it differently.
View 4 Replies
View Related
Jan 27, 2011
we want to enhance the current libpcap version 1.1.x to provide timestamp in nanosecond resolution.
While searching related to same, we found that enhanced libpcap requires x64 architecture.
Is that so?
Do we need 64-bit architecture for using enhanced libpcap for nanosecond timestamping ?
View 1 Replies
View Related
Jan 16, 2011
I found the following function in /etc/profile file.
[Code]...
1. I dont undestand what "if ! echo $PATH | /bin/grep -qE "(^|:)$1($|:)"" this if statement actually comapres??
2. Also what is the difference between PATH=$PATH:$1 & PATH=$1:$PATH
View 14 Replies
View Related
Oct 8, 2010
I use this command:
Code:
find ./ -atime +360
to figure out the files that haven't been accessed since 360 days. The command above will return results like this:
Code:
/uploads/2010/02/some-file-name.ext
/uploads/2009/08/another-file-name.ext
... etc
I'm taking here about tins of directories, thousands of files. I'm looking to find a command that makes me able to move the results above to another path, and to create that path once it doesn't exist like below:
Code:
mv /uploads/2010/02/some-file-name.ext /old-files/uploads/2010/02/some-file-name.ext
But I want the executed command to create this path
Code:
/old-files/uploads/2010/02/
If it doesn't exist.
View 6 Replies
View Related
Feb 21, 2011
I have a program that takes a relative path as input appends it to a some path string to get the actual path.
Now all I can input is the relative path. So if I want to go one level above my input will be ../mypath.
If I know the depth of the path used internally, I can use .. as many times to go to the root directory and then give the absolute path. But suppose I do not know the depth of the directory, can I construct a relative path string such that it considers it as a relative path. One way could be to have enough .. in the path string so that I can force an absolute path for some maximum depth of path.
Is there some path string syntax that I am not aware of but can achieve this?
View 2 Replies
View Related
Apr 26, 2011
Experimenting with shell variables, accidentally deleted the path variable how could I return to the original path value. What kinds of problems will I have if I don't have a path variable.
View 3 Replies
View Related
Sep 14, 2009
I have a path c:windowsackup I need this string to be changed into /windows/back/up I used the command -bash-3.00$ echo windackup | sed 's/\//g' but the output is windbackup
View 7 Replies
View Related
May 31, 2011
Current script:-
prefix=user@my-server:
find . -depth -type d -name .git -printf '%h�' | while read -d "" path ; do (
cd "$path" || exit $?
[code]....
How shall i go about changing the absolute path to relative path, so that /home/git/mirror/android/adb/ndk.git gets converted to /mirror/android/adb/ndk.git //echo <command> "$prefix$PWD.git" ?? - anything for relative path?
View 7 Replies
View Related
Oct 29, 2010
Does anyone know of a good tutorial for installing and configuring Nagios on OpenSuSE 11.x?
View 3 Replies
View Related
Apr 20, 2010
I have 3 virtual machines set up. 2 are servers and one is a client. On one of the servers I have installed apache, mysql, and php and mod_ssl. I can get to the web site on the server from my client system. I can even get to the info php site--the screen that shows everything about php (it's purplish!) I can also get to the secure https site. The one thing I can't do is get my table to display.I have set up a new user in mysql. I have granted that user all privileges. I have created a table on a new database in mysql. I then set up php code within html code But every time I try to go to my test.php site it only gives me the header. It obviously cannot find the table array. This is the code and someone already told me it looked right to them. So I am not sure what I am doing wrong.
View 14 Replies
View Related
Jun 1, 2010
While installing berkeley db on linux i m getting the following error:
"configure: error: no acceptable C compiler found in $PATH"
I m installing this for postfix.
View 6 Replies
View Related
Mar 24, 2010
i need to make a FTP server, i tried using the forums but well.... it was no good, i tried with svftpd but i still lack of knowledge and everything.
View 3 Replies
View Related
Jan 31, 2011
I'm trying to install a program which requires Java VM. The installer is a install.bin file, coming with a eclipse folder; in this folder, you can find a "jre" directory. I also installed Coconut Java virtual machine, as well as OpenJDK Java 6 runtime environment. However, I still can't install the program. Executing the installer gives me this error message:
Code:
Preparing to install. Extracting the installation resources from the installer archive. Configuring the installer for this system's environment. No Java virtual machine could be found from your PATH environment variable. You must install a VM prior to running this program. I think I should make Java VM available to the installer somehow, but I don't know how. I tried searching online but couldn't figure out the answer. Please help.
View 6 Replies
View Related
May 30, 2011
I downloaded Java from the Java website, and went into the root to try and make it an executable file, and it says "chmod: cannot access `home/Non-Admin/Downloads/jre-6u25-linux-i586-rpm.bin': No such file or directory". Is there some sort of program I can install that will automatically turn the rpm.bin/.bin into an executable file?
View 8 Replies
View Related
Apr 25, 2009
I've decided to install apache server from groundzero. So I've done next things:1)downloaded source tar with apache22)unzipped it3)./configure(d) it4)make5)make install
...But!!! I can't start it. apachectl in /usr/local/apache2/bin
error answer is:
<code>
[root@dhcppc1 bin]# apachectl start
[code]...
View 6 Replies
View Related
Mar 18, 2009
I have been happily running the (always latest) version of PolarCloud's Tomato software on my LinkSys WRT54G for about 2 years now. I am looking for a way to setup a Proxy Server on my Tomato-based router to use from a remote machine somewhere in the web cloud.The reason for wanting to set this up follows. I normally run Squid on a Ubuntu 8.04 box, which I use while I am away from my LAN at home to browse the net (I like to keep things between me and my ISP, as much as possible . I rely on my proxy server on a daily basis. The way it works is I SSH into my Ubuntu box, and forward squid ports. I then point my browser to the proxy on my box. For various reason, however, I would like to set it up so that I can also do this via my router. So, I would like to be able to ssh to my router (I can already do this), forward the proxy ports, and surf the nets happily via my router at home. I am happy to use existing solutions (if possible), such as privoxy or squid, and am also open to setting up a custom-based solution, as may be necessary.
View 1 Replies
View Related
Oct 11, 2010
I'm thinking of making ubuntu my main os and deleting my win 7 dualboot and installing it on virtualbox. Does win 7 run smoothly on virtualbox? I have a C2D 1,8Ghz, 2GB of ram laptop.
View 9 Replies
View Related
Jul 16, 2011
I recently installed Ubuntu 11.04 64bit to run along Winxp in a dual boot format. I have heard many good things about Ubuntu but am using it for the first time. I have used a ntfs partition of 30GB for Ubuntu. During the installation part I was asked for the size and I gave 8 GB, I read that this was recommended. There are quite a few things I would like to know.
1. What's the difference between Ubuntu software center & Synaptic software manager?
2. Can you do everything easily via the GUI?
3. My Nvidia 8800 GT works on 1440x900 on my win xp OS. Here it doesn't seem to get to that. Additional drivers window says that 173 version is active but not in use.
4. Where do all the updates/new softwares/ drivers etc get installed? I mean the path. Like in Xp I can give a path for the installation. Can I do that in here?
5. I want to install GNS 3 which is a routing simulator and have heard that Ubuntu is very stable for it.
6. How can I get desktop icons on the desktop?
7. What's the use of 4 workspaces? I mean why is it used and what are the advantages.
I tired searching the Internet but most of them just so confusing that it feels to difficult and am afraid I might break something. Plus most of the commands are in cli that I am not able to grasp.
View 6 Replies
View Related
Mar 1, 2011
I am running slackware-current and I have tcpdump-4.1.1-i486-1.txz installed. If I remember right libpcap used to be part of tcpdump, but since recently i cannot find it in my system anymore! Tools like nmap give me the error message:
"error while loading shared libraries: libpcap.so.1: cannot open shared object file: No such file or directory"
View 2 Replies
View Related
Feb 27, 2010
I'm fairly new to Fedora (only been using it for about a month) and I'm installing the Android plugin for Eclipse so I can do some development. I am following the directions at the android website and it says to put the path of my downloaded SDK into the system PATH variable. I know how to do this on windows but I have never done it in fedora.
View 3 Replies
View Related
Feb 28, 2010
Are there detailed instructions for Suse 11.2, anywhere, on installing a hardware dial-up modem and configuring it to get an Internet connection?
View 2 Replies
View Related