web-dev-qa-db-ja.com

php5-mcryptをインストールできません

Phpの下にmcryptをインストールしようとしていますが、インストールできません。 _php test.php | grep mcrypt_(test.phpにphpinfo()が含まれている場合)を実行すると、何も表示されないので、インストールします。

_Sudo apt-get install php5-mcrypt_を実行すると、次のようになります。

_E: Unable to locate package php5-mcrypt
_

_Sudo apt-cache search mcrypt_を実行しても、何も表示されません。

これが私の/etc/apt/sources.listです

_deb cdrom:[Ubuntu 13.04 _Raring Ringtail_ - Release AMD64 (20130424)]/ raring main restricted
deb http://archive.ubuntu.com/ubuntu raring main restricted
deb-src http://archive.ubuntu.com/ubuntu raring main restricted

deb http://security.ubuntu.com/ubuntu raring-security main restricted
deb-src http://security.ubuntu.com/ubuntu raring-security main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu raring-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu raring-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
 deb http://archive.ubuntu.com/ubuntu raring universe
 deb-src http://archive.ubuntu.com/ubuntu raring universe
 deb http://archive.ubuntu.com/ubuntu raring-updates universe
 deb-src http://archive.ubuntu.com/ubuntu raring-updates universe
 deb http://security.ubuntu.com/ubuntu raring-security universe
 deb-src http://security.ubuntu.com/ubuntu raring-security universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
 deb http://archive.ubuntu.com/ubuntu raring multiverse
 deb-src http://archive.ubuntu.com/ubuntu raring multiverse
 deb http://archive.ubuntu.com/ubuntu raring-updates multiverse
 deb-src http://archive.ubuntu.com/ubuntu raring-updates multiverse
 deb http://security.ubuntu.com/ubuntu raring-security multiverse
 deb-src http://security.ubuntu.com/ubuntu raring-security multiverse

deb http://us.archive.ubuntu.com/ubuntu/ quantal universe
deb-src http://us.archive.ubuntu.com/ubuntu/ quantal universe
deb http://us.archive.ubuntu.com/ubuntu/ quantal-updates universe
deb-src http://us.archive.ubuntu.com/ubuntu/ quantal-updates universe
_

Deb/deb-srcのものの最後のセットは http://forums.linuxmint.com/viewtopic.php?f=90&t=135896 からのものです

https://stackoverflow.com/q/19446679/569976 によるとこれはうまくいくはずです:

_Sudo ln -s /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available
Sudo php5enmod mcrypt
_

唯一の問題:/etc/php5/conf.d/mcrypt.iniがありません。

何か案は? ubuntuで動作させるには、ソースから自分でmcryptをコンパイルする必要がありますか? Ubuntu13.04を実行しています。

ありがとう!

2
neubert

私と同じ問題が発生しているかどうかはわかりませんが(13.04ではなくUbuntu 13.10を実行しています)、これは自分でうまくいきました。元の答えは次のとおりです: https://stackoverflow.com/questions/19446679/mcrypt-not-present-after-ubuntu-upgrade-to-13-1

Sudo ln -s /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available
Sudo php5enmod mcrypt
Sudo service Apache2 restart
3