Ubuntu Server 14.04 编译安装 PHP

每次编译安装 PHP 过程中出现了一些错误,都是直接谷歌相应的解决方案。刚才又在 Linode 上编译了一遍最新的 PHP,记录过程如下,以做备忘。

首先安装 build-essential 包:

apt-get install build-essential

进入 php 源码目录,我的 configure 命令选项如下:

./configure --with-bz2 --with-curl --with-jpeg-dir --with-gd --enable-shared --enable-mbstring --with-mcrypt --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd --enable-fpm --enable-phar --enable-bcmath --with-zlib --enable-zip --enable-ftp --with-gettext --enable-sockets --with-freetype-dir --with-fpm-user=www-data --with-fpm-group=www-data --with-config-file-path=/usr/local/etc/php/php.ini --with-config-file-scan-dir=/usr/local/etc/php/conf.d

配置过程中,会出现若干错误,提示各种头文件找不到,下面分别给出错误提示和对应的需要安装的包:

#Cannot find libz
apt-get install zlib1g-dev

#Please reinstall the BZip2 distribution
apt-get install libbz2-dev

#Please reinstall the libcurl distribution -
#    easy.h should be in <curl-dir>/include/curl/
apt-get install libcurl4-gnutls-dev

#jpeglib.h not found
apt-get install libjpeg-dev

#png.h not found
apt-get install libpng12-dev

#freetype-config not found
apt-get install libfreetype6-dev

#mcrypt.h not found. Please reinstall libmcrypt
apt-get install libmcrypt-dev

直到没有错误为止。最后:

make && make install

至此编译安装完成。

 

ubuntu 恢复删除的图标文件

今天在ubuntu上安装了kubuntu-desktop,用了一会,又觉得不爽,就将kubuntu-desktop给卸载了。重启再进入gnome桌面,发现鼠标指针还是kde下的那个样式,总觉得不爽,想换过来,但在外观里面设置还是没能解决问题。于是,去想干脆将所有的主题元素都删除后在再重新安装一遍ubuntu-desktop。找到了外观资源存放的文件夹。为以下两个目录:

/usr/share/icons
/etc/X11/cursors

我将这两个文件夹下的文件全部删除了。结果所有软件的图标都没有了,包括系统图标,左上角的ubuntu的logo,总之就是都没有了。然后运行:

sudo aptitude reinstall ubuntu-desktop

还是那样,没能解决问题。

后来上网解决了,运行如下两条命令就行了:

sudo aptitude reinstall `dpkg -S /usr/share/icons | cut -d: -f1 | sed 's/,//g'`
sudo aptitude reinstall `dpkg -S /etc/X11/cursors | cut -d: -f1 | sed 's/,//g'`

图标恢复之后,然后在外观里设置鼠标的样子,重启后一切都恢复了。

(原博客发布时间:2012-04-13 20:05:55)