Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thierryzoller/dfbb510786415b637cae3769128561a5 to your computer and use it in GitHub Desktop.
Save thierryzoller/dfbb510786415b637cae3769128561a5 to your computer and use it in GitHub Desktop.

Jeedom on Rasberry Pi 3 with RaZberry Z-Wave+

Restore lastest image of Raspbian Jessie Lite on the micro-SD card by your prefered method (see Installation Guide).

First boot

Login as pi user (default password: raspberry):

sudo -i 
raspi-config 

    # 1. Expand Filesystem
    # 5. Internationalisation Options
    #     I2. Change Timezone
    #         Europe/Paris

reboot

Update the system

Login as pi user:

sudo -i
aptitude update
aptitude full-upgrade
reboot

Update Raspberry Pi firmware

Login as pi user:

sudo -i
aptitude install rpi-update
rpi-update 
reboot

Install lastest stable Jeedom

Login as pi user:

sudo -i
aptitude install screen
exit

As pi user, launch Jeedom installation in a screen session:

screen
sudo -i
wget https://raw.githubusercontent.com/jeedom/core/stable/install/install.sh
chmod +x install.sh
./install.sh

Note the last output message:

/!\ IMPORTANT /!\ Root MySql password is b3051ab5fcee5cb

For RaZberry on Raspberry Pi 3, disable bluetooth:

echo "dtoverlay=pi3-miniuart-bt" >> /boot/config.txt
reboot

And follow the Jeedom's Premier Pas documentation:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment