In a terminal, type: sudo su To access a root-level prompt. Then, run: crontab -e To begin editing your crontab, a table of tasks to run automatically at a given time. It will open in your preferred text editor. Modify it to include the following lines: 0 7 * * 1 apt-get update && sudo…
Category: Raspberry Pi Guides
Photo-Show Installation
Should have taken notes. Installed most everything per the guide. Only problem was with the FTP and permissions. Had to set some permissions afterwards because the FTP server could not write in the www directory. PhotoShow, responsive and powerful web gallery http://arobaseinformatique.eklablog.com/installer-photoshow-sur-debian-jessie-a119895262 Installed the Apache server using the Raspberry PI Zero Apache install guide. Base…
Basic Webserver Build with Apache
sudo apt-get update sudo apt-get upgrade sudo reboot == Update Firmwares sudo apt-get install ca-certificates sudo apt-get install git-core sudo wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update sudo rpi-update sudo shutdown -r now sudo apt-get clean == Change IP sudo nano /etc/network/interfaces Change iface eth0 inet dhcp to iface eth0 inet static address…