> For the complete documentation index, see [llms.txt](https://dev.solid-run.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.solid-run.com/amd/r8000-r7000/sbc-platform/bedrock-r8000-technical-documentation/software-bedrock-r8000/howto-guides-bedrock-r8000-r7000/enabling-watchdog-in-ubuntu.md).

# Enabling Watchdog in Ubuntu

**Step 1 - Remove the watchdog module from modprobe blacklists:**

```
grep -r sp5100_tco /lib/modprobe.d/c
```

And comment out every "blacklist sp5100\_tco".

**Step 2 - Create a new modprobe.d entry:**

```
echo "options sp5100_tco heartbeat=30 nowayout=1" > /etc/modprobe.d/sp5100_tco.conf
```

**Step 3 - Install the watchdog package**

```
apt install -y watchdog
```

**Step 4 - Update the watchdog config**

Open the /etc/watchdog.conf file.

Uncomment the following line:

\#watchdog-device = /dev/watchdog

Uncomment and replace the following line:

\#watchdog-timeout = 60

With:

watchdog-timeout = 30

**Step 5 - reboot the system**

```
reboot
```

That’s it, it can be tested by triggering a kernel crash with the following command:

```
echo c > /proc/sysrq-trigger
```

The kernel will crash, and the system will reboot after up to 30 seconds.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.solid-run.com/amd/r8000-r7000/sbc-platform/bedrock-r8000-technical-documentation/software-bedrock-r8000/howto-guides-bedrock-r8000-r7000/enabling-watchdog-in-ubuntu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
