-bash:phpize:Centos 6ではコマンドが見つかりません


8

走ろうとするphpize

-bash: phpize: command not found

私は実行しましたyum -y install php-develが、それは戻ります:

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.softaculous.com
 * extras: centos.schlundtech.de
 * rpmforge: mirror1.hs-esslingen.de
 * updates: ftp.plusline.de
Setting up Install Process
No package php-devel available.
Error: Nothing to do

どうすれば修正できますか?


phpize5代わりにコマンドではありませんphpize
Anthon

回答:


5

特定の実行可能ファイルがどこにあるかわからない場合は、次のようにして、YUMのインストールを照会できますrepoquery

$ repoquery -q --file */phpize
php-devel-0:5.3.3-26.el6.x86_64
php-devel-0:5.3.3-27.el6_5.x86_64

最速のミラー

Yumはプラグインを利用して機能を強化しています。これらのプラグインの1つはfastestmirrorと呼ばれます。時々、このプラグインが遅くなる原因になることがあります。このプラグインが選択するミラーサイトは、常に使用するのに最適なサイトではない場合があります。

このファイルを削除することにより、このプラグインからミラーの優先リストを削除できます。

$ sudo rm /var/cache/yum/timedhosts.txt

多くの場合、一部のミラーが残りのミラーまたは元のサイトより遅れているため、最も高速なミラープラグインが混乱を招く可能性があります。私は通常、次のように問題を回避するために一時的に無効にします。

$ sudo yum --disableplugin=fastestmirror install php-devel

-or-

$ sudo yum --noplugins install php-devel
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.