Skip to content
Jean-Paul Marcade edited this page Mar 31, 2019 · 6 revisions

Work in progress. This workflow is not fully tested.

Setup the Rasberry Pi - part 1

You will need an external screen for the steps 1 to 4.

  1. Install Raspbian Lite on a Rasberry Pi. This can be easily achieved using NOOBS.
  2. Allow remote ssh connections. This can be modified from :
    sudo raspi-config
  1. Make sure that you are connected to the internet by pinging an external website such as :
    ping google.com
  1. Note down the IP address. You can find it from :
    ifconfig

Setup the Raspberry Pi - part 2

  1. 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.

  1. Make sure that everything is up to date :
    sudo apt-get update
    sudo apt-get upgrade
  1. 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
  1. Restart Apache :
    sudo service apache2 restart
Clone this wiki locally