Raspberry Pi 2是一個很便宜的小型電腦,使用ARM Cortex-A7架構的CPU,記憶體有1G,只需要SD Card就能啟動,可以裝數種linux OS(for raspberry pi)及windows 10 IOC,要來當做個人家廳多媒體中心,或是簡單的Web Service實分夠用了。
LAMP即Linux Apache MySQL(Mariadb)及PHP的統稱,而Webmin是個Web GUI管理介面,如果不習慣ssh連線的人,是個十分推廌的選擇。
一,安裝LAMP
A.安裝Apache
sudo apt-get install apache2 -y
B.安裝PHP
sudo apt-get install php5 libapache2-mod-php5 -y
C.安裝MySQL(Mariadb)
sudo apt-get install mysql-server php5-mysql -y
測試看看是否可以使用
http://raspberrypi/
參考資料Worksheet – Build a LAMP Web Server with WordPress | Raspberry Pi Learning Resources
二,安裝Webmin
A.登入raspberry pi增加apt source list
使用nano修改apt的source.list
sudo -i nano /etc/apt/sources.list
增加
copy 跟post ,CTRL+X 然後選Y,存檔並離開nano
deb http://download.webmin.com/download/repository sarge contrib deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
B.加入一個Key
cd /root wget http://www.webmin.com/jcameron-key.asc apt-key add jcameron-key.asc
C.安裝webmin
apt-get update apt-get install webmin
安裝完後就可以連入了
http://raspberrypi:10000