https://cloud.tencent.com/developer/article/1405107 ubuntu安裝lmap環境php
清華的源html
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiversemysql
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverselinux
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiversenginx
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiversesql
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverseapache
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverseubuntu
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiversevim
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiversecentos
~
~
~
下面將詳細介紹源碼安裝的常規步驟。表1:源碼安裝<1> 下載源碼包並解壓縮,wget source_link,tar –zxvf source.tar.gz;<2> 配置,./configure,針對當前系統、軟件環境,配置好安裝參數;<3> 編譯,make,將源代碼文件變成二進制的可執行程序;<4> 安裝,make install 將編譯好的程序文件複製到系統中。 具體安裝Apache的流程以下。Step 1:下載以下的源碼包。並解壓縮。Apache 源碼包 :http://mirrors.hust.edu.cn/apache//httpd/httpd-2.4.37.tar.gz Apr源碼包:http://archive.apache.org/dist/apr/apr-1.5.0.tar.gz Apr-Util源碼包:http://archive.apache.org/dist/apr/apr-util-1.5.4.tar.gz 圖3:下載的源碼包 Step 2:安裝源碼包,安裝的步驟如表1所示。注意,在安裝的過程當中最好指定安裝路徑,./ configure --prefix=install_path,若是提示缺乏依賴關係,建議使用yum安裝。Step 3:測試Apache,centos7使用systemctl代替chkconfig管理服務,防火牆也由iptables更換成了firewalld,首先用systemctl關閉防火牆:systemctl stop firewalld.service/systemctl disable firewalld.service。找到Apache的安裝路徑,./apachectl start 開啓服務。最後在客戶端瀏覽器輸入IP 地址,看看可以成功訪問 Apache,顯示It Works!就表明 服務器已成功啓動
Apache的配置文件
/usr/local/apache/httpd.conf
開啓服務 /usr/local/apache/bin/apachectl start
關閉服務 /usr/local/apache/bin/apachectl stop
查看配置文件,查找documentroot的位置
Kali
系統中軟件管理
Step 1 先去更換更新源 vim /etc/reources.list , apt-get update &&apt-get upgrade &&apt-get autoclean
Step 2 安裝軟件
apt-get search 軟件名 查詢
apt-get install 軟件名 安裝
apt-get remove 軟件名 刪除
在kali中使用dpkg管理軟件
Dpkg -I xx.deb 安裝
Dpkt -r 軟件名稱 卸載
WAMP環境 phptuudy
Lamp環境 在linux中安裝apach mysql phph三種環境 同事須要安裝某些插件
Lnmp=linu+nginx+mysql+php
Lamp
yum install mariadb mariadb-server mariadb-libs mariadb-devel
測試php -v
在documentroot中寫php代碼測試
/var/www/html(yum)
/usr/local/apache2/htdocs(源碼)
https://blog.csdn.net/rudy5348/article/details/79253021 centos7安裝lamp
https://www.cnblogs.com/me80/p/7218883.html centos7安裝lamp