Changes between Version 22 and Version 23 of ubuntu


Ignore:
Timestamp:
10/09/2020 03:41:17 PM (4 years ago)
Author:
Tim Harvey
Comment:

updated watchdog details

Legend:

Unmodified
Added
Removed
Modified
  • ubuntu

    v22 v23  
    334334[=#watchdog]
    335335== Watchdog
    336 The standard Linux watchdog daemon can be installed on ubuntu and configured:
     336The standard Linux watchdog daemon can be installed on ubuntu and configured.
     337
     338Note that these steps are already done for you when using the Gateworks pre-built Ubuntu based images:
     339 * install package
    337340{{{#!bash
    338341# install
    339342apt-get install watchdog
    340 # create a conf file
     343}}}
     344 * create conf file:
     345{{{#!bash
    341346cat << EOF > /etc/watchdog.conf
    342347watchdog-device = /dev/watchdog
     
    346351watchdog-timeout = 30
    347352EOF
    348 # enable running at boot
    349 update-rc.d watchdog enable
    350 # start service (if not enabled at boot)
    351 /etc/init.d/watchdog start
    352 }}}
     353}}}