debian安裝php7
① debian7下面安裝失敗 怎麼破
計算機屬性/高級系統設置/高級/啟動和故障恢復/設置/
然後把
顯示操作系統列表時間
勾掉就行。
如果是新手,建議用集成的環境WampServer,XAMPP這些都可以
,或者你想自己搭建,遇到的問題,可以直接說出來。
③ 如何在linux上安裝php5.6,謝謝,
不知道你問的linux,是哪個發行版本,常用的如 ubntu,centos,debian等。
我列一個centos7(伺服器常用這個版本)的安裝方法吧
centos7默認使用yum install 來安裝程序,但默認源安裝的php是5.4的,版本比較低,
要安裝高版本的,要麼下載源代碼手動編譯安裝,但對不熟悉的,萬一出點錯誤,會越搞越亂。我一般使用epel源安裝php,裡面各個版本都有,最新的php7.3
首先安裝epel
rpm -ivh http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm
這裡面的url是目前我用的,如果提示出錯,就是換url了,可以在電腦上手動打開epel源列表去檢查 epel-release是哪個版本,換上對應的名字
按版本安裝php
rpm-Uvhhttps://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yuminstallphp56wphp56w-mysqlphp56w-pdophp56w-gdphp56w-sslphp56w-mbstringphp56w-cliphp56w-xmlphp56w-bcmath
我這里列的是一些常用的php擴展,如果需要其它的,手動加上即可
如果需要安裝php其它版本,把包名里的56改成對應版本即可 ,如
yuminstallphp71wphp71w-mysqlphp71w-pdophp71w-gdphp71w-sslphp71w-mbstringphp71w-cliphp71w-xmlphp71w-bcmath
yuminstallphp72wphp72w-mysqlphp72w-pdophp72w-gdphp72w-sslphp72w-mbstringphp72w-cliphp72w-xmlphp72w-bcmath
可對應安裝php7.1和php7.2,這種安裝方法,會默認配置好對應的設置,php.ini在/etc/中查找,命令行也默認啟用了 (php-cli)
④ debian如何apt-get安裝php5.4
sudoapt-getinstallphp5
⑤ debian php7怎麼升級
1.升級只會升級系統裡面軟體和系統內核,大版本不會變。 2.你用的默認的源吧 3.換163的吧 mirrors.163.com/.help/debian.html 4.你可是對比下163和官網源速度,用ping命令
⑥ 如何在debian下安裝軟體
您好,很高興能幫助您
在Debian Linux安裝軟體首先必須配置好安裝源。有幾個程序可以用來安裝軟體:apt-get, aptitude, synaptic.apt-get是命令行工具,aptitude是字元圖形界面工具,synaptic是圖形界面工具。
1. 配置安裝源
/etc/apt/sources.list文件可以這樣寫
deb ftp://debian.ustc.e.cn/debian stable main non-free contrib
deb ftp://debian.ustc.e.cn/debian testing main non-free contrib
下面我們將以安裝firefox瀏覽器來解釋3個安裝工具的用法。
2. 使用apt-get安裝軟體
在終端中輸入su和密碼後,以root身份運行apt-get update更新軟體列表,然後運行apt-get install firefox就可以安裝上firefox瀏覽器了。
3. 使用aptitude安裝軟體
用apt-get安裝軟體固然方便,但是,有時候你必須記住軟體的全稱和具體版本號,用aptitude就不需要了。
在終端中輸入su和密碼後,以root身份運行aptitude,用滑鼠選擇Actions菜單——Update package list更新軟體列表或者你按"u"鍵。然後按"/"鍵,彈出搜索窗口。輸入fire回車,將高亮顯示第一個被搜索到的名字含有fire的軟體。如果第一個不是firefox,按"n"(next)鍵繼續搜索下一個。找到後按SHIFT+"+"選定,再按"g"(go)就安裝上了。升級軟體也是同樣的方法。
4. 使用synaptic安裝軟體
你可以需要使用前面的兩種方法中的一種安裝synaptic.
從系統菜單中運行Synaptic Package Manager運行synaptic,輸入root密碼後就可以使用了。從Edit菜單中選擇Reload Package Information更新軟體列表。用滑鼠點擊任意一個軟體,以激活軟體列表框,然後直接按鍵盤輸入的fire——搜索。按鍵盤上的向下箭頭來搜索下一個。找到後按回車,然後按工具欄上的Apply就安裝上了。
你的採納是我前進的動力,
記得好評和採納,答題不易,互相幫助,
⑦ debian8怎麼安裝php7
debian8 編譯安裝 php7
目錄(?)[-]
Please reinstall the libcurl distributionCannot find OpenSSL
configure error Unable to locate gmph
Can not find recodeh anywhere under usr usrlocal usr optCannot find pspell
Please reinstall the mysql distribution
mcrypth not found Please reinstall libmcryptxml2-config not found
安裝編譯器
apt-get install build-essential autoconf automake libtool bison re2c獲取PHP安裝包
wget https://downloads.php.net/~ab/php-7.0.13RC1.tar.gz安裝dev包
apt-get install libxml2-dev libssl-dev libbz2-dev libjpeg-dev libpng-dev libxpm-dev libfreetype6-dev libgmp-dev libgmp3-dev libmcrypt-dev libmysqlclient15-dev libpspell-dev librecode-dev進行編譯安裝
./buildconf //用來生成configure腳本
./configure \
--prefix=/usr \
--with-config-file-path=/etc \
--enable-mbstring \
--enable-zip \
--enable-bcmath \
--enable-pcntl \
--enable-ftp \
--enable-exif \
--enable-calendar \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--with-curl \
--with-mcrypt \
--with-iconv \
--with-gmp \
--with-pspell \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-zlib-dir=/usr \
--with-xpm-dir=/usr \
--with-freetype-dir=/usr \
--with-t1lib=/usr \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--with-openssl \
--with-pdo-mysql=/usr \
--with-gettext=/usr \
--with-zlib=/usr \
--with-bz2=/usr \
--with-recode=/usr \
--with-mysqli=/usr/bin/mysql_config
備註:錯誤1:Cannot find OpenSSL's libraries 解決:
確認已安裝過 openssl、libssl-dev 包,還是會提示該錯誤;解決辦法:
root@test2:~/php-5.3.27# find / -name libssl.so輸出結果為: /usr/lib/x86_64-Linux-gnu/libssl.so初步判斷它可能只會在 /usr/lib/ 下尋找 libssl.so 文件,於是:
ln -s /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib錯誤2:debian Please reinstall the libcurl distribution 解決:
# RetHat CentOS or Fedora 使用下面安裝命令yum install curl curl-devel
# Debian or Ubuntu使用下面的安裝命令
apt-get install curl
apt-get install libcurl4-gnutls-dev
錯誤3:Unable to locate gmp.h 解決:
在https://launchpad.net/debian/+source/gmp 下載 gmp源碼包,接著 ./configure && make && make install編譯 安裝
make &&make install
報錯處理
Please reinstall the libcurl distributionaptitude search libcurl4
aptitude install libcurl4-gnutls-dev
Cannot find OpenSSL』
wget https://www.openssl.org/source/openssl-1.0.2j.tar.gztar -zxvf openssl-1.0.2j.tar.gz
cd openssl-1.0.2j
./config
make && make install
configure: error: Unable to locate gmp.h
sudo apt-get install libgmp-dev libgmp3-devln -s /usr/include/x86_64-linux-gnu/gmp.h /usr/include/gmp.hCan not find recode.h anywhere under /usr /usr/local /usr /opt.
apt-get install librecode-dev
Cannot find pspell
apt-get install libpspell-dev
Please reinstall the mysql distribution
apt-get install libmysqlclient15-dev
mcrypt.h not found. Please reinstall libmcrypt.
apt-get install libmcrypt-dev
xml2-config not found
apt-get install libxml2-dev
⑧ 如何在Debian 8/7上使用PPA安裝PHP 7.0和5.6
告訴你個秘密,網路後盾網。
⑨ 如何在深度linux系統里安裝php7
UNetboot這個工具,將映像文件烤制U盤就可以了。 unetbootin/ 不推薦使用這兩個系統,國人的系統配置上總是落後而且沒支持,推薦UBUNTU,Arch或Debian。