APT installiert was will...

JamesG

Registered User
Hi,

ich installiere auf meinem Root-Debian 3.1:

phpmyadmin

apt-get install phpmyadmin
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
apache-common libapache-mod-php4 libzzip-0-12 php4 php4-common php4-mysql
Suggested packages:
apache apache-ssl apache-perl php4-pear php4-gd php5-gd
The following NEW packages will be installed:
apache-common libapache-mod-php4 libzzip-0-12 php4 php4-common php4-mysql phpmyadmin
0 upgraded, 7 newly installed, 0 to remove and 0 not upgraded.
Need to get 5549kB of archives.
After unpacking 17.9MB of additional disk space will be used.
Do you want to continue? [Y/n] n

hee, ich habe bei mir apache2, warum will er mir apach1.x Pakete installieren?
Ein ap-get php4 ergibt fast das gleiche.
Ich würde es verstehen, wenn ich die Quellen gemischt hätte, aber ich habe bis jetzt nur sahen aus den stable quellen installiert...

thx,
JamesG
 
HornOx said:
Selbst kompiliert oder als .deb Packet installiert? Was sagt "dpkg -l apache\*"?http://packages.debian.org/stable/web/phpmyadmin
phpmyadmin will irgendeinen Apache haben und apt-get installiert, wenn es keinen vorfindet, den ersten in der Liste.

Ich habe .deb Pakete installiert...

server1:~# dpkg -l apache\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version Description
+++-===================================-===================================-======================================================================================
un apache-common <none> (no description available)
un apache-utils <none> (no description available)
ii apache2 2.0.54-5 next generation, scalable, extendable web server
ii apache2-common 2.0.54-5 next generation, scalable, extendable web server
un apache2-dev <none> (no description available)
un apache2-doc <none> (no description available)
un apache2-modules <none> (no description available)
un apache2-mpm-perchild <none> (no description available)
un apache2-mpm-prefork <none> (no description available)
un apache2-mpm-threadpool <none> (no description available)
ii apache2-mpm-worker 2.0.54-5 high speed threaded model for Apache2
un apache2-prefork-dev <none> (no description available)
ii apache2-threaded-dev 2.0.54-5 development headers for apache2
ii apache2-utils 2.0.54-5 utility programs for webservers
server1:~#


thx,
JamesG
 
hmm, die Frage hätte ich mir sparen können wenn ich richtig nachgedacht/gelesen hätte...
Ein ap-get php4 ergibt fast das gleiche.
php4 ist ein "meta"-Packet, siehe http://packages.debian.org/stable/web/php4
Mach mal folgendes:
Code:
apt-get install libapache2-mod-php4 phpmyadmin
btw:
ii apache2-mpm-worker 2.0.54-5 high speed threaded model for Apache2
Please note that this package ONLY works with Apache's prefork MPM, as it is not compiled thread-safe.
 
Back
Top