Sponsored Content
Top Forums Web Development apache2 & two php versions, how to use specific version Post 302311926 by thegeek on Thursday 30th of April 2009 02:18:38 AM
Old 04-30-2009
I tried installing the apache2-prefork-dev in Debian Etch. And it shows the following error.
Code:
apt-get install apache2-prefork-dev
....
The following packages have unmet dependencies:
  apache2-prefork-dev: Depends: libaprutil1-dev but it is not going to be installed
E: Broken packages

while trying to install that package,
Code:
apt-get install libaprutil1-dev
....
....
The following packages have unmet dependencies:
  libaprutil1-dev: Depends: libexpat1-dev but it is not going to be installed
                   Depends: libpcre3-dev but it is not going to be installed
                   Depends: libapr1-dev (>= 1.2.2-1) but it is not going to be installed
                   Depends: libsqlite3-dev but it is not going to be installed
                   Depends: libpq-dev but it is not going to be installed
                   Depends: libmysqlclient15-dev but it is not going to be installed
E: Broken packages

And it goes ... So what to do ?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What is the difference : SunOS & Solaris Version.

Sorry I think someone already pointed out this but I couldn't find it. Please tell me what is the difference between SunOS Version and Solaris Version. What is the purpose of maintaining these two things ? Thanks (2 Replies)
Discussion started by: champion
2 Replies

2. Shell Programming and Scripting

Awk: Version && nextfile

How can I find which version of Awk is installed? OpSystem is HPUX 11.x I am getting an error when trying to use the keyword nextfile and I dont know why! (Well, I can only assume that I have am using a version of Awk that does not support nextfile. However, according to O'Reilly, nextfile is... (3 Replies)
Discussion started by: google
3 Replies

3. SCO

SCO & Informix SE version 7

hi, I need to download Informix SE version 7 for SCO but i could'nt find the link. please if someone can send me the link. thinks. (1 Reply)
Discussion started by: whisper
1 Replies

4. Shell Programming and Scripting

PHP read large string & split in multidimensional arrays & assign fieldnames & write into MYSQL

Hi, I hope the title does not scare people to look into this thread but it describes roughly what I'm trying to do. I need a solution in PHP. I'm a programming beginner, so it might be that the approach to solve this, might be easier to solve with an other approach of someone else, so if you... (0 Replies)
Discussion started by: lowmaster
0 Replies

5. UNIX for Dummies Questions & Answers

How to compare 2 files & get specific value & replace it in other file.

Hiiii Friends I have 2 files with huge data. I want to compare this 2 files & if they hav same set of vales in specific rows & columns i need to get that value from one file & replace it in other. For example: I have few set data of both files here: a.dat: PDE-W 2009 12 16 5 29 11.11 ... (10 Replies)
Discussion started by: reva
10 Replies

6. AIX

Does anyone know the version of make on AIX 5.1 & 5.3?

Could you tell me the version of default make on AIX 5.1 & 5.3? (2 Replies)
Discussion started by: redraiment
2 Replies

7. Programming

pythonqt scriptint & orting to lower version

I am facing some problems in deploying my application for lower version of qt. Basically i want to generate scripts for my application and I have chosen pythonqt for this purpose. Pythonqt has the problem with lower version of Qt (Qt 4.5.2) and also with Higher version of Qt (Qt 4.7). So I... (1 Reply)
Discussion started by: sujandasmahapat
1 Replies

8. Solaris

Please Help me about php&apache2 onSol10

Ok. I'm have Apache2 build on Solaris10 release 10/9 and I installed Mysql that could work. but I install php5 by pkgadd this packet install in /usr/local/php and i edit httpd.conf Insert "LoadModule php5_module libexec/libphp5.so" after edited httpd.conf so i restart httpd by... (1 Reply)
Discussion started by: infjustice
1 Replies

9. Web Development

php showing 2 versions

Fedora core 5 upgraded PHP php -v PHP 5.3.8 (cli) (built: Sep 30 2011 05:55:57) Copyright (c) 1997-2011 The PHP Group but if I also created a <?php phpinfo() ?> doc and it reports as 5.1.6 still something missing somewhere? (1 Reply)
Discussion started by: ippy98
1 Replies
APT-RDEPENDS(1) 														   APT-RDEPENDS(1)

NAME
apt-rdepends - performs recursive dependency listings similar to apt-cache SYNOPSIS
apt-rdepends [options] [pkgs ...] DESCRIPTION
apt-rdepends searches through the APT cache to find package dependencies. apt-rdepends knows how to emulate the result of calling apt- cache with both depends and dotty options. By default, apt-rdepends shows a listing of each dependency a package has. It will also look at each of these fulfilling packages, and recursively lists their dependencies. OPTIONS
-b, --build-depends Show build dependencies instead of normal package dependencies. -d, --dotty dotty takes a list of packages on the command line and generates output suitable for use by springgraph (1). The result will be a set of nodes and edges representing the relationships between the packages. By default the given packages will trace out all dependent packages which can produce a very large graph. Blue lines are pre-depends, green lines are conflicts, yellow lines are suggests, orange lines are recommends, red lines are replaces, and black lines are depends. Caution, dotty cannot graph larger sets of packages. -p, --print-state Shows the state of each dependency after each package version. See --state-follow and --state-show for why this is useful. -r, --reverse Shows the listings of each package that depends on a package. Furthermore, it will look at these dependent packages, and find their dependers. -f, --follow=DEPENDS A comma-separated list of DEPENDS types to follow recursively. By default, it only follows the Depends and PreDepends types. The possible values for DEPENDS are: Depends, PreDepends, Suggests, Recommends, Conflicts, Replaces, and Obsoletes. In --build-depends mode, the possible values are: Build-Depends, Build-Depends-Indep, Build-Conflicts, Build-Conflicts-Indep. -s, --show=DEPENDS A comma-separated list of DEPENDS types to show, when displaying a listing. By default, it only shows the Depends and PreDepends types. --state-follow=STATES --state-show=STATES These two options are similar to --follow and --show. They both deal with the current state of a package. By default, the value of STATES is Unknown, NotInstalled, UnPacked, HalfConfigured, HalfInstalled, ConfigFiles, and Installed. These options are useful, if you only want to only look at the dependencies between the Installed packages on your system. You can then call: apt-rdepends --state-follow=Installed libfoo Or if you want to only show the packages installed on your system: apt-rdepends --state-follow=Installed --state-show=Installed libfoo pkgs The list of packages on which to discover dependencies. -v, --vcg, --xvcg This option takes a list of packages on the command line and generates output suitable for use by xvcg. The result will be a set of nodes and edges representing the relationships between the packages. By default the given packages will trace out all dependent packages which can produce a very large graph. Blue lines are pre-depends, green lines are conflicts, yellow lines are suggests, orange lines are recommends, red lines are replaces, and black lines are depends. -o, --option=OPTION Set an APT Configuration Option; This will set an arbitrary configuration option. The syntax is -o Foo::Bar=bar. SEE ALSO
apt.conf(5), sources.list(5), apt-cache(8), AptPkg(3), springgraph(1) BUGS
apt-rdepends does not emulate apt-cache perfectly. It does not display information about virtual packages, nor does it know about virtual packages when it is in reverse dependency mode. apt-rdepends also does not know how to stop after a certain depth has been reached. apt-rdepends cannot do reverse build-dependencies. This is really difficult, since it would have to load the whole cache into memory before discovering which packages depend on others to build. apt-rdepends exists. This functionality should really reside in apt-cache itself. AUTHOR
apt-rdepends was written by Simon Law <sfllaw@debian.org> 1.3.0 2012-09-16 APT-RDEPENDS(1)
All times are GMT -4. The time now is 07:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy