From 8466f1267106089f50ed62558f255d934e2407a0 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 15 Jan 2026 00:34:49 -0800 Subject: [PATCH] Update outdated doc. io_uring has not been required in years. --- docs/pm/cli/install.mdx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/pm/cli/install.mdx b/docs/pm/cli/install.mdx index 054e364a91..0e2a092d54 100644 --- a/docs/pm/cli/install.mdx +++ b/docs/pm/cli/install.mdx @@ -26,21 +26,6 @@ The `bun` CLI contains a Node.js-compatible package manager designed to be a dra - -The recommended minimum Linux Kernel version is 5.6. If you're on Linux kernel 5.1 - 5.5, `bun install` will work, but HTTP requests will be slow due to a lack of support for io_uring's `connect()` operation. - -If you're using Ubuntu 20.04, here's how to install a [newer kernel](https://wiki.ubuntu.com/Kernel/LTSEnablementStack): - -```bash terminal icon="terminal" -# If this returns a version >= 5.6, you don't need to do anything -uname -r - -# Install the official Ubuntu hardware enablement kernel -sudo apt install --install-recommends linux-generic-hwe-20.04 -``` - - - To install all dependencies of a project: ```bash terminal icon="terminal"