安裝中文IME(參考百度經驗)
http://jingyan.baidu.com/article/ad310e80ae6d971849f49ed3.html
安裝右鍵terminal
1.開啟一個Terminal(ctrl+alt+t),輸入如下指令sudo apt-get install nautilus-open-terminal2.使用以下指令來重啟Nautilusnautilus -q或者安裝一個非常好用的 terminal : Guake Terminal
搭建lamp開發環境
sudo apt-get install apache2 #安裝apache sudo apt-get install php5 #安裝php和apache的php模組sudo apt-get install mysql-server mysql-client #安裝mysql服務端和用戶端sudo apt-get install php5-memcache #安裝PHP的memcached拓展
安裝memcache
sudo apt-get install memcached #安裝php memcached 擴充memcached -d -m 50 -p 11211 -u root #啟動一個memcached服務-d 是啟動一個守護進程 -m 指定使用多少兆的緩衝空間;-p 指定要監聽的連接埠; -u 指定以哪個使用者來運行-l 是監聽的伺服器ip地址,預設為127.0.0.1 -c是最大並發串連數,預設1024 -P是儲存pid檔案 如/tmp/memcached.pid->使用telnet測試 memcached 服務$ telnet localhost 11211 Trying 127.0.0.1...Connected to localhost.
安裝 curl 拓展
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
安裝SVN
sudo apt-get install subversion subversion-tools #輸入svn --version 檢測時否安裝成功
著作權聲明:知識取之於民,用之於民!歡迎轉載,轉載請開頭附上本文連結,不定期更新文章!
以上就介紹了ubuntu 15 搭建php開發環境,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。