RMySQL error 'configure' exists but is not executable - centos

I am installing RMySQL on centos.
There were many dependencies, and I was able to install all.
But still getting one error, when I am trying to install.
The command I am executing is below:
R CMD INSTALL RMySQL_0.9-3.tar
And I am getting following errors:
* installing to library /usr/lib64/R/library
* installing *source* package RMySQL ...
ERROR: 'configure' exists but is not executable -- see the 'R Installation and
* removing /usr/lib64/R/library/RMySQL
Has anybody faced this kind of problem with Rphp or RMySQL ?
Thanks in Advance for reply

It was permission issue.
And it was solved by the commands
# chmod 777 /root/tmp/
# TMPDIR=$HOME/tmp
# export TMPDIR
I am posting my answer here, hope it will help someone else also.

Related

Scala / SBT Assembly Error: Could not create directory

I get the following error when trying to execute the command sbt/sbt assembly:
[error] Could not create directory
/home/user/Downloads/spark-1.6.0/external/mqtt/target/streams/test/$global/$global/discoveredMainClasses
I have no idea...
Check your permissions for creating.
if you run before this command with sudo and after that try it without sudo you will receive this message.
It was an issue with something being out of date. I tried reinstalling Ubuntu with updates included and it worked this time. I probably could have also done this by checking each package manually, but this was easier.

Lpsolve matlab installation error

The error is:
Error using mxlpsolve
Failed to initialise lpsolve library.
I run the
Makefile.m
in the folder and the compiliation, it says everything compiled fine. Where do i need to put mslpsolve and where do i find it?
I used the following guide to solve the same problem:
http://lp-solve.2324885.n4.nabble.com/Fwd-Re-lpsolve-in-MATLAB-on-Mac-OS-X-10-8-2-td1770.html
the only thing that was missed within the guide and I added it up is as follows:
$ cd $HOME/Documents/MATLAB/lp_solve_5.5/extra/MATLAB/lpsolve
$ sudo ln -s /opt/local/lib/liblpsolve55.dylib liblpsolve55.so
make sure that you have installed lp_solve package already.

Sipp with pcap installation on windows

I am trying to install sipp with pcap-replay on winows7.
I have installed cygwnin, libncurse, and winpcap. I was trying to patch cygwin with IPv6 using the URL http://cygwin.win6.jp/cygwin-ipv6/, but it couldn't get the setup.ini file.
So I copied to local directory and upgrade, but it said no new updates.
And if I try to complie sipp. it gives error
$ ./configure.ac --with-pcap
./configure.ac: line 3: syntax error near unexpected token [SIPp],'
./configure.ac: line 3:AC_INIT([SIPp], [3.3], [sipp-users#lists.sourceforge.net], [sipp])'
Could anyone help me in getting sipp be installed on windows?
I download sipp.3.3.990 it has ./configure and was able to install on Linux.
But now on windows it still fails saying ncurse is not present. But I have downloaded it.
How do I troubleshoot it from here?
You can follow below steps to generate configure from configure.ac.
$> autoreconf -i
Now, you will see a configure file created at the same location.
To run the above command, following packages are required: automake,ncurses-devel,libncurses,M4 and autoconf.
if any of the above packages are missing run the cygwin setup file again and select the packages on the package selection screen and click install.

xrl/nprobe install - command not found

I try to install xrl/nprobe when it is going to install first need to configure with ./configure but in my terminal give "bash: ./configure: No such file or directory" i work with ubuntu 12.04. if you can someone please help me
Do you tried to install via apt-get without the source code?
See:
http://www.nmon.net/apt/

pcap.h header file problem

anyone know how to fix the problem regarding header file in ubuntu 10.10.
I am executing a sniffing program which makes use of this header file. My system shows libcap package is installed. Still, on compiling the code, an error is coming which reads:
fatal error: pcap.h: No such file or directory
compilation terminated.
Please help me out.
Thanks all:)
The system won't let me correct Eric Fossum's comment, because I lack reputation. There is a typo ("libcap" vs. "libpcap") and his suggested command should read the following:
sudo apt-get install libpcap-dev
sudo apt-get install libpcap0.8-dev
If you are using yum, then
sudo yum install install libpcap-devel
You don't have the pcap.h file in your include path. You need to add the location of pcap.h to your include path when compiling:
-I/path/to/pcap.h
If you're using linuxbrew, you can just brew install libpcap. In my case I was trying to install nethogs and it failed with this error.
First install libpcap:
sudo apt-get install libpcap0.8-dev
then create its shortcut for header file:
ln -s /usr/include/pcap/bpf.h /usr/include/net/bpf.h