среда, 19 февраля 2014 г.

FreeBSD / Linux restart crash process

#!/usr/local/bin/bash
#
if [ "$(/usr/local/bin/pidof flow-capture)" ]
then
  # process was found
  echo 1 >/dev/null
else
  # process not found
  echo 2 >/dev/null
  /usr/local/etc/rc.d/flow_capture start
fi

FreeBSD автоматический рестарт упавшего процесса

via http://www.opennet.ru/tips/2086_freebsd_cron_monitoring_service.shtml

*/5 * * * * /usr/bin/find /usr/local/etc/rc.d/ -type file | xargs -I$ sh -c "($  2>&1 | grep -q -v status) \
      && exit ; ($ status > /dev/null) && exit ; $ start"

понедельник, 10 февраля 2014 г.

How to Install The Latest VLC Release in Ubuntu 12.04

How to Install The Latest VLC Release in Ubuntu 12.04


http://www.omgubuntu.co.uk/2014/02/install-latest-vlc-release-ubuntu-12-04

sudo add-apt-repository ppa:djcj/vlc-stable
sudo apt-get update && sudo apt-get install vlc