First of all thanks for your reply, I expected the forum to send me a notification about it but I have not received any so that is why I have been late in replying back...
In the end I power cycled the Pi anyway and had a look at the /var/log content. Turns out that there seems to be one logfile lasting a day or so and tghen a number of syslog.X.gz files containing compressed versions of previous syslogs.
I scanned these and found out that on the day I had left home the logs changed structure.
Before that time there was a certain hourly activity as follows:
Code: Select all
Jun 4 12:15:01 raspbian-pi /USR/SBIN/CRON[15203]: (root) CMD ((date; ls /var/www/webcam/*snapshot.jpg | head --lines=-20 | xargs rm -v) >> /tmp/images_deleted 2>&1)
Jun 4 12:17:01 raspbian-pi /USR/SBIN/CRON[15212]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Jun 4 12:39:01 raspbian-pi /USR/SBIN/CRON[15225]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime ] && [ -x /usr/lib/php5/sessionclean ] && [ -d /var/lib/php5 ] && /usr/lib/php5/sessionclean /var/lib/php5 $(/usr/lib/php5/maxlifetime))
Jun 4 13:09:01 raspbian-pi /USR/SBIN/CRON[15242]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime ] && [ -x /usr/lib/php5/sessionclean ] && [ -d /var/lib/php5 ] && /usr/lib/php5/sessionclean /var/lib/php5 $(/usr/lib/php5/maxlifetime))
One of these is from my webcam installation and is repeating every hour throughout a normal syslog.
But then something happened:
Code: Select all
Jun 5 00:15:01 raspbian-pi /USR/SBIN/CRON[17086]: (root) CMD ((date; ls /var/www/webcam/*snapshot.jpg | head --lines=-20 | xargs rm -v) >> /tmp/images_deleted 2>&1)
Jun 5 00:17:01 raspbian-pi /USR/SBIN/CRON[17095]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Jun 5 00:39:01 raspbian-pi /USR/SBIN/CRON[17107]: (root) CMD ( [ -x /usr/lib/php5/maxlifetime ] && [ -x /usr/lib/php5/sessionclean ] && [ -d /var/lib/php5 ] && /usr/lib/php5/sessionclean /var/lib/php5 $(/usr/lib/php5/maxlifetime))
Jun 5 00:54:48 raspbian-pi dhclient: DHCPREQUEST on eth0 to 192.168.0.129 port 67
Jun 5 00:54:48 raspbian-pi dhclient: send_packet: Network is unreachable
Jun 5 00:54:48 raspbian-pi dhclient: send_packet: please consult README file regarding broadcast address.
Jun 5 00:54:52 raspbian-pi dhclient: DHCPREQUEST on eth0 to 192.168.0.129 port 67
Jun 5 00:54:52 raspbian-pi dhclient: send_packet: Network is unreachable
Jun 5 00:54:52 raspbian-pi dhclient: send_packet: please consult README file regarding broadcast address.
Jun 5 00:55:03 raspbian-pi dhclient: DHCPREQUEST on eth0 to 192.168.0.129 port 67
Jun 5 00:55:03 raspbian-pi dhclient: send_packet: Network is unreachable
This repeats ad infinum, every 1 hour there is an extra line like this:
Code: Select all
Jun 5 01:14:57 raspbian-pi dhclient: DHCPREQUEST on eth0 to 192.168.0.129 port 67
Jun 5 01:14:57 raspbian-pi dhclient: send_packet: Network is unreachable
Jun 5 01:14:57 raspbian-pi dhclient: send_packet: please consult README file regarding broadcast address.
Jun 5 01:15:01 raspbian-pi /USR/SBIN/CRON[17133]: (root) CMD ((date; ls /var/www/webcam/*snapshot.jpg | head --lines=-20 | xargs rm -v) >> /tmp/images_deleted 2>&1)
Jun 5 01:15:15 raspbian-pi dhclient: DHCPREQUEST on eth0 to 192.168.0.129 port 67
Jun 5 01:15:15 raspbian-pi dhclient: send_packet: Network is unreachable
So the webcam handler continues running but it seems like the network has been lost!
And this brings down all other connectivity as well of course.
Does this shed some extra light on where I should go looking for a reason for the failure????