From a7bc229114d0a5f01396228431cf80f3cc570fb6 Mon Sep 17 00:00:00 2001 From: Kevin Landreth Date: Mon, 11 May 2026 08:33:37 -0500 Subject: [PATCH] docs: document linux inotify exhaustion #16610 --- packages/web/src/content/docs/troubleshooting.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/web/src/content/docs/troubleshooting.mdx b/packages/web/src/content/docs/troubleshooting.mdx index 40ac70b9eb7..e076b5f2091 100644 --- a/packages/web/src/content/docs/troubleshooting.mdx +++ b/packages/web/src/content/docs/troubleshooting.mdx @@ -200,6 +200,7 @@ Here are some common issues and how to resolve them. 1. Check the logs for error messages 2. Try running with `--print-logs` to see output in the terminal 3. Ensure you have the latest version with `opencode upgrade` +4. On linux, ensure you have enough inotify budget #16610: `sudo sysctl -w fs.inotify.max_user_watches=1048576 fs.inotify.max_user_instances=2048` ---