-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jean-Paul Marcade edited this page Mar 31, 2019
·
6 revisions
Work in progress. This workflow is not fully tested.
You will need an external screen for the steps 1 to 4.
- Install Raspbian Lite on a Rasberry Pi. This can be easily achieved using NOOBS.
- Allow remote ssh connections. This can be modified from :
sudo raspi-config
- Make sure that you are connected to the internet by pinging an external website such as :
ping google.com
- Note down the IP address. You can find it from :
ifconfig
- Connect to the Raspberry Pi from a computer using the IP address found before.
The default credentials are 'pi' for the login and 'raspberry' for the password. You should update them.
- Make sure that everything is up to date :
sudo apt-get update
sudo apt-get upgrade
- Install a few packages including an Apache web server, PHP, mySQL and git.
sudo apt-get install apache2 -y
sudo apt-get install php -y
sudo apt-get install mysql-server python-mysqldb -y (php-mysql ?)
sudo apt-get install git -y
- Restart Apache :
sudo service apache2 restart