Changes between Version 22 and Version 23 of ubuntu
- Timestamp:
- 10/09/2020 03:41:17 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ubuntu
v22 v23 334 334 [=#watchdog] 335 335 == Watchdog 336 The standard Linux watchdog daemon can be installed on ubuntu and configured: 336 The standard Linux watchdog daemon can be installed on ubuntu and configured. 337 338 Note that these steps are already done for you when using the Gateworks pre-built Ubuntu based images: 339 * install package 337 340 {{{#!bash 338 341 # install 339 342 apt-get install watchdog 340 # create a conf file 343 }}} 344 * create conf file: 345 {{{#!bash 341 346 cat << EOF > /etc/watchdog.conf 342 347 watchdog-device = /dev/watchdog … … 346 351 watchdog-timeout = 30 347 352 EOF 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 }}}