Changes between Version 6 and Version 7 of ubuntu


Ignore:
Timestamp:
05/25/2018 03:50:56 PM (6 years ago)
Author:
Tim Harvey
Comment:

added watchdog section

Legend:

Unmodified
Added
Removed
Modified
  • ubuntu

    v6 v7  
    110110
    111111[=#wireless]
    112 
    113112== Wireless ==
    114113
     
    234233 * see {{{/etc/dhcp/dhclient.conf}}} for the default DHCP client configuration
    235234 * typically the Gateworks prebuilt root filesystems will configure networking to bring up {{{eth0}}} by default using {{{dhcp}}} for network configuration with a 10 second timeout.
     235
     236
     237[=#watchdog]
     238== Watchdog
     239The standard Linux watchdog daemon can be installed on ubuntu and configured:
     240{{{#!bash
     241# install
     242apt-get install watchdog
     243# create a conf file
     244cat << EOF > /etc/watchdog.conf
     245watchdog-device = /dev/watchdog
     246realtime = yes
     247priority = 1
     248interval = 5
     249watchdog-timeout = 30
     250EOF
     251# enable running at boot
     252update-rc.d watchdog enable
     253# start service (if not enabled at boot)
     254/etc/init.d/watchdog start
     255}}}