ubuntu源码编译安装php常见错误解决办法

./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=/usr/local/mysql --with-gd --w...

阅读全文

ubuntu下编译PHP报错:configure: error: freetype.h not found.

执行configura时提示configure: error: freetype.h not found.freetype明明是使用apt-get安装了的。也可以查询到这个文件但是就是不行root@ubuntu:/c2ms/packages/php-5.3.28# cat configure |grep freetype.h      if test -f "$i/includ...

阅读全文

ubuntu配置自动使用root账户登陆系统

以前基本都是使用centos系统,最近没事看看linux还有没有其他发行版本玩玩,于是就安装了ubuntu,ubuntu和centos有些区别,就是必须要设置一个账户,然后用这个账户来登陆系统,执行命令时候操作非家目录文件或者操作需加sudo,习惯用root账户,这样就觉得有点麻烦,于是想找找如何使用root直接登陆系统的方法,百度到一个,直接记录下默认安装Ubuntu都是不允许以root用户进行登录的,想要以root用户进行登录需要进行一些操作,主要是以下几个步骤首先给root账户设置一个密码sudo passwd root修改/u...

阅读全文

在ubuntu上快配置nginx+php+mysql

1、先更新ubuntu系统更新命令,并安装nginxsudo apt-get updatesudo apt-get upgradesudo apt-get install nginx启动nginxsudo /etc/init.d/nginx startcheck version#查看nginx版本nginx -v安装mysqlapt-get install mysql-server注:在安装过程中,会要求你...

阅读全文

ubuntu14.04安装配置vsftp

安装vsftpdsudo apt-get install vsftpd新建/home/uftp目录作为用户主目录sudo mkdir /data/www/sulao新建用户uftp并设置密码sudo useradd -d /data/www/sulao -s /bin/bash -M sulao -g ftp修改配置文件/etc/vsftpd.confsudo vi /etc/vsftpd.con...

阅读全文

ubuntu14.04配置静态IP

ubuntu配置静态IP主要修改interfaces文件我们直接打开文件vi /etc/network/interfaces然后添加以下配置auto eth0          iface eth0 inet static  address 10.214.161.240     netmask 255.25...

阅读全文