1.變更 root 使用者密碼。
sudo passwd root
下列步驟將以 root 使用者帳號重新登入。
2.安裝 Apache Server
apt-get install apache2
Apache Server 其他常用指令:
- 啟動 Apache Server 指令:/etc/init.d/apache2 start
- 停止 Apache Server 指令:/etc/init.d/apache2 stop
- 重新啟動 Apache Server 指令:/etc/init.d/apache2 restart
apt-get install mysql-server
MySQL Server 其他常用指令:
- 啟動 MySQL Server 指令:/etc/init.d/mysql start
- 停止 MySQL Server 指令:/etc/init.d/mysql stop
- 更改資料庫root使用者密碼:mysqladmin -u root -p password NEW_PASSWORD
apt-get install php5
5.安裝其他相關套件
apt-get install libapache2-mod-auth-mysql
apt-get install php5-mysql
apt-get install php5-gd
apt-get install php5-cli 6.安裝phpmyadmin
apt-get install phpmyadmin
安裝完成後,套件會在 /usr/share/phpmyadmin,請自行拷貝到 /var/www 目錄下
以上,為 ubuntu 10.04 的安裝過程,使用者亦可透過【Synaptic 套件管理程式】以任務配置標記套件的方式安裝 LAMP Server 。