Programming :: Install Wxsqlite3-2.0.2 On Debian Machine - Wx-config File Cannot Be Found

Feb 23, 2011

I am trying to install wxsqlite3-2.0.2 on my Debian machine. I have installed wxGTK-2.8.11 in the folder: /home/mrj2/wxGTK-2.8.11

When I run the wxsqlite3-2.0.2 configure script, a problem arises due to the fact that wxGTK is expected to be in a specific directory. The wx-config file cannot be found. However, there are copies of these files for each type of build in the folders:

/home/mrj2/wxGTK-2.8.11/GCCBuildDebugGTK2
/home/mrj2/wxGTK-2.8.11/GCCBuildDebugGTK2Unicode
/home/mrj2/wxGTK-2.8.11/GCCBuildReleaseGTK2
/home/mrj2/wxGTK-2.8.11/GCCBuildReleaseGTK2Unicode
/home/mrj2/wxGTK-2.8.11/GCCBuildReleaseMacUnicode

There is not a problem with my wxGTK installation as I use it in DialogBlocks and it works fine.

View 2 Replies


ADVERTISEMENT

Programming :: Installing Php - Configure: Error: Xml2-config Not Found

Feb 21, 2010

i was installing php5.3 on my system nd i followed d procedure

./install after processing man lines it said checking for xml2-config path... configure: error: xml2-config not found. Please check your libxml2 installation.

[Code]...

View 2 Replies View Related

Fedora :: PHP PECL Package - Gmagick Config File Not Found

Dec 29, 2009

I've been trying to install the gmagick extension for days now without success. I always end up with the same error message:

checking GraphicsMagick configuration program... configure: error: not found. Please provide a path to GraphicsMagick-config program.
ERROR: '/tmp/pear/temp/gmagick/configure --with-gmagick' failed

It's no wonder why I get this message as the location simply does not exists, its being unpacked to 'gmagick-1.0.3b2' and not 'gmagick'. I've tried to copy/paste the configuration file (config.m4?) to my manually created 'gmagick' directory within the temp folder but that didn't solve anything.

Command when installing:
Code:
pecl install gmagick-1.0.3b2
I'm running Fedora 12.

View 3 Replies View Related

Debian :: Pkg_config_path - Makefile And Libnl - /bin/sh: Pkg-config: Not Found

Feb 13, 2010

I have xubuntu 9.10 and I'm trying to install iw-0.9.19.When I use the command "make" I get this error:

/bin/sh: pkg-config: not found
/bin/sh: pkg-config: not found

Makefile:38: *** Cannot find development files for any supported version of libnl. Stop. I read the Readme file and it says: "To build IW, just enter make. If that fails, set the PKG_CONFIG_PATH environment variable to allow the Makefile to find libnl". I guess the problem is linking Makefile (in iw-0.9.19 directory) to libnl (version 1.1 correctly installed on xubuntu) via pkg_config_file.

View 6 Replies View Related

Debian :: Unable To Install Any Package - File Not Found

Apr 27, 2011

I would like to install svn, but I am unable to install. sudo apt-get update gives me :

Ign file: eeepc Release.gpg
Ign file:/home/user/packages/ eeepc/main Translation-en
Ign file:/home/user/packages/ eeepc/main Translation-en_US
Ign file: eeepc Release
Ign file: eeepc/main amd64 Packages
Err file: eeepc/main amd64 Packages
File not found
W: Failed to fetch file:/home/user/packages/dists/eeepc/main/binary-amd64/Packages.gz
File not found

E: Some index files failed to download, they have been ignored, or old ones used instead.
sudo apt-get install apache2 gives me :
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package apache2

View 8 Replies View Related

Ubuntu :: Unable To Install Glib-config Script Not Found

Aug 1, 2010

I installed cdroast that came with ubuntu and received the following:Warning: No root configuration file found or not readable!The superuser must start and configure X-CD-Roast first, before other users can use it.

I searched and found that the root configuration was turned off in some versions and uninstalled, then found a good version at http://www.xcdroast.org/ but when I tried to install from a *.tar.gz and after I ran a ./config.I downloaded glib-2.24.0.tar.gz and got a successful install, and I still receive the GLIB error. If the problem is GLIB_CONFIG environment variable, I do not know how to change that. I cannot locate glib-config either.

View 1 Replies View Related

Debian Installation :: Fresh Install - Grub File Not Found Error

Nov 28, 2015

I just installed debian from debian-live-8.2.0-amd64-standard+nonfree.iso and after installation, which finished without problems, I cannot boot the system. I get the error:

Code: Select allfile '/boot/grub/i386-pc/normal.mod not found

From grub-rescue via ls command I see that I don't have the i386-pc folder inside /boot/grub. I have only two files:
unicode.pf2 and grub.cfg

View 7 Replies View Related

Debian Installation :: Install Cifs-utils On Wheezy Armhf 404 File Not Found

Aug 12, 2014

Install cifs-utils on wheezy armhf
apt-get install cifs-utils --fix-missing
Reading package lists... Done
Building dependency tree
Reading state information... Done

[Code] ....

View 7 Replies View Related

Programming :: Write A Shell Script Which Edits A Config File ?

Mar 1, 2011

Write some simple script?

Heres what Im trying to do:

-Qjackctl has a config file which is modified each time QjackCtl is shut down. This means that whatever preset is in use when QjackCtl closes is written into the QjackCtl config file as the DEFAULT PRESET, for the next time QjackCtl starts (or at least this is how I understand it).

-I want to edit a specific line in the QjackCtl.config file, which specifies the DEFAULT PRESET. Obviously its easy to do manually, but I want to do it using a shell script which runs automatically on StartUp so that QjackCtl starts every time with the same DEFAULT PRESET, NOT the last one used.

-Unfortunately Im not at my Linux system right now (which is KXStudio/Kubuntu), but I believe the QjackCtl.config line looks something like this: DEF_PRESET=alsa (where alsa is the name of the preset)

PRESET1=alsa
PRESET2=firewire

I want a shell script which changes the line DEF_PRESET=alsa to DEF_PRESET=alsa, even when it may currently exist as DEF_PRESET=firewire due to occasions when firewire was the active preset when Qjackctl was last closed. I notice that the application in KDE that enables the user to set which applications open automatically on StartUp also allows the user to select shell scripts.

Ive done some research, as a beginner, and Im led to believe I might need to use AWK and/or CHMOD. I could have a go at writing a shell script but Im always wary about experimenting with StartUp scripts/operations because obviously if I get it wrong and make my system unusable, then because its going to run first thing on each boot, Id have great difficulty disabling it.

View 3 Replies View Related

Programming :: Bash-code To Rename Files Based On Config File

Apr 12, 2010

I'm writing a bash shell script that among various other things will traverse through a directory with hundreds of files and rename those who match a pattern found in a config file. It's expected that only about one in ten files will actually match, and those who don't, will simply just be ignored for this purpose.

This should for instance cause the file "dBase program file December 1987.prg" to be renamed "Clipper source code December 1987.prg", and conversely "C++ source August 1996.cpp" to be renamed "C source code August 1996.cpp" etc.A sample file such as "Random Data File.dat" should not be renamed here since it's not mentioned in the config file..What is the quickest, most elegant way to do this in bash?I am thinking of using bash's built-in regex matching combined with the /bin/rename utility, but don't quite know how to get started to catch this..I guess there are plenty ways of doing this in perl and elsewhere as well, but since this has to integrate into a pre-existing bash script, that's what I'm looking for.Anyone out there with a spare moment to offer a hint in the right direction?

View 14 Replies View Related

Programming :: Changing A Line In A Config File While Installing The Program Using Bash Script

Jul 22, 2011

I am trying to write a bash script that installs a program fully automated for me. I am stuck at the one part where i need to change a line in one config file. I have tried various syntax for sed and none have worked. Maybe someone can suggest how to go about this. Since the line appears in the middle of the file, I can't use echo or cat. Also the file will be diffrent lengths depending on the install.

The line I need changed is:

I need that changed to:

the last syntax i tried is:

Yes this is for PNP4Nagios on centos 5.6 64bit. If i can get this figured out. I will be willing to post the whole thing for others to use. it will be used to install PNP after a working nagios install is done.

View 11 Replies View Related

Debian :: RIPIT Can't Find The Config File?

Jan 20, 2011

I've installed RIPIT 3.6.0-1 for Lenny and have been following this tutorial to define a config file that saves all my options and which I can call every time I want to rip a CD [URL]

Following that tutorial I copied the config file in etc/ripit/config to the new director ~/.ripit/config. The new directory and file exist as I can see them when I do ls -a and can edit the new config file.

However when I type the command ripit all I get is the error message No config file found!

View 1 Replies View Related

Red Hat :: Install A Config.mk File In Fedora?

Mar 3, 2011

I have a cd containing wifi drivers, but inside is a config.mk file and no configure file. so when I tried to install the tarball using ./configure it could nt find anything. so I tried using su - then I said sudo ./config.mk and it said bash error I don't have premission and it referenced the sudoers file. I not sure what this means, and am I even installing the right file for the driver I need. there is also already a Makefile in the folder as well....

View 2 Replies View Related

Programming :: Binary File Cannot Be Found?

Jan 28, 2010

I get this error when I run the program that i created using eclipse.How to fix this?

View 3 Replies View Related

Debian :: Why Apt-file Search Wx-config Not Find - Lenny

Dec 31, 2008

How apt-file works.

Background: I (like somebody else) needed to figure out which package wx-config is in.

Code:

Question: Which package makes a link?

Also why wx-common NOT depends on libwxgtk2.6-dev.

View 4 Replies View Related

Programming :: Split File When Integer Is Found

Jun 25, 2010

I have a file in which contains one line with a lot floating points.In the very first place and some times in the downstream, there are a few integers, surrounded by blank spaces.1 1.02-4 1.03-5 544 1.04-1 65 2.98-1 5.78-10 3.45-2 etc etc.I aim to split the file in more files each of them containing an integer and the following floatings until the next integer.

View 1 Replies View Related

Programming :: Svnsync File Not Found Error

Apr 6, 2010

I'm trying to do a svnsync of this public repo: http://svn.runuo.com/repos/runuo/devel/ so I can access the repo when my machine is offline. I get this error at revision 419 svnsync: File not found: transaction '419-bn', path '/devel/Scripts/Engines/Doom/Lamp Room/LampController.cs'

I am using svnsync, version 1.6.5 (r38866)

View 6 Replies View Related

Debian Configuration :: How To Import VPN Config Files With No File Extension

Feb 10, 2016

I've downloaded configuration files for my VPN, Kovurt, and they don't have a .ovpn file extension. Further, when I tried to enter the information manually (using this guide), I saw that the files only include the <ca> tags, and no <cert>, <key> or <tls-auth> tags.

Here is the content of one of the config files, simply named 'Tokyo' with no extension. (adding .ovpn didn't work either):

Code: Select allclient
dev tun
proto udp
remote 50.31.255.86 443
resolv-retry infinite
nobind

[Code] ....

I have an open ticket with Kovurt asking for the other info, but I know already that they don't have much in the way of documentation or support for Linux.

View 0 Replies View Related

Debian Configuration :: User2 Can't Get The File /home/user1/www/wp-config.php?

Apr 17, 2010

how can i do user2 can't get the file /home/user1/www/wp-config.php by using an editor but the webserver can?i mean how can i disallow access on other user's directorys but allow only one? (www-data in case).

View 7 Replies View Related

Ubuntu Installation :: How To Load Kickstart Config File - Refuses To Load File / Launches Generic Install

May 6, 2010

I created an Ubuntu 10.4 iso with the kickstart cfg on it, trying to boot it with the ks=/cdrom/pathtoconfig (tried even ks=cdrom:/path) parameter in VirtualBox but it refuses to load the file and just launches the generic install.

View 1 Replies View Related

OpenSUSE Install :: Getting Suse To Rewrite The Config File?

Sep 3, 2010

I have a question during a new kernel compilation (I made a backup of my .config) file) However I ran into issues during the make oldconfig process and unfortunately I issued a make clean followed by a mrproper which cleared my existing .config file.
Since I have a backup of my previous .config file is there of restoring without changing the permission rights to file?

-r--r--r-- 1 root root 27754 2010-09-03 22:39 /proc/config.gz

View 4 Replies View Related

Debian :: Preserve / Merge Config File Information During Software Upgrades?

Mar 21, 2011

How does Debian preserve/merge config file information during software upgrades? My google searches left me a little unclear on this point. Also (if you happen to know) does Ubuntu use the same method?

View 2 Replies View Related

Programming :: Find Command Return True If File Found?

May 18, 2011

How to manage the find command to return true or false if a file was found/or not? I tried to man find but didn't found anything.

View 12 Replies View Related

General :: Using A Config Directory Instead Of A Config File?

May 7, 2011

I currently can run an old swf on my Chumby 8 device by storing and using these three files on a USB plugged into the device

config
<?xml version="1.0" encoding="utf-8" ?>
- <config>

[code]...

View 1 Replies View Related

Ubuntu :: Sudo Aptitude Install Fbpanel / Can't Find Config File

Jul 9, 2010

I installed fbpanel with sudo aptitude install fbpanel, but I can't find the config file. according to the readme it's suppose to be under ~/.config/fbpanel/default, but it's not there. Where else can it be? I did a whereis fbpanel and it's located in a few areas, but no default config file is there!

View 3 Replies View Related

Programming :: Bash Script: Catch File Not Found Error And Send To /dev/null

Apr 21, 2010

I have the following working script. It checks the directory for txt files, if files are there, it copies to another directory or gives error. I would like to exclude "file not found" errors and send them to /dev/null. All other errors should go to the email address as usual.

Code:

#!/bin/bash
function err
{
if [[ $? -ne 0 ]]

[Code]....

View 7 Replies View Related

Ubuntu Installation :: Install The 32bit 10.04 Server To An Atom Machine From A CD - Getting Error - "No Kernel Modules Were Found"?

May 26, 2010

I'm trying to install the 32bit 10.04 server to an atom machine from a CD burned with ubuntu-10.04-server-i386.iso. The installer is presenting me with the:"No kernel modules were found" ..error message. Is the atom cpu and chipsets supported by the 32bit server installer?

View 1 Replies View Related

Debian Installation :: Moving Debian Install From Virtual Machine To Physical

Feb 20, 2010

I have been learning Debian by using a virtual machine. After fine-tuning my installation procedure, I decided to copy that installation to my physical system. The hard drive already has another Linux based system installed. I plan to dual boot.After copying files I updated fstab and menu.lst.The partition scheme between the virtual and physical environments are similar, but the partitions are not mapped exactly the same.Thus the Debian system on the physical hard drive fails to boot simply because the initrd is created for the root partition location on the virtual machine. The initrd created in the virtual machine is looking for the root file system on /dev/hda1 whereas on my physical drive the new location is /dev/sda7.How can I rebuild the initrd on the physical system? I started to use the installation DVD in rescue mode, but I did not get too far.

View 6 Replies View Related

Debian Multimedia :: Unable To Install On Another Debian Machine The Same Iceweasel 5?

Jul 31, 2011

I am running Debian testing on my box and iceweasel 5 with several addons. My question is the following: is there a way to export above all my addons settings to a file? I would like to be able to install on another debian machine the same iceweasel 5 and have the same addons installed (if I could have even the same toolbar it would be dream) automatically.

View 1 Replies View Related

Debian :: An Apt-get Install Lottanzb Would Change All Libraries, Config Files Etcetera?

May 14, 2010

not trolling for a flame war but I simply added the testing repository earlier and did an apt install of just lottanzb and it ended up taking ages and installed lots of new files and removed things like Epiphany etcetera, and that one command had me having to reinstall as it messed everything up so it wouldn`t work at all even the shell was messing up.I have never had Windows break totally from an install, but first try with Linux and it did so could someone explain why an apt-get install lottanzb would change all my libraries, config files etcetera with the testing version over Lenny stable?

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved