Improved Documentation for Zypper and small fixes.#793
Conversation
📝 WalkthroughWalkthroughThis PR updates the Linux installation documentation to clarify package-manager distinctions and improve workflow clarity. RHEL and Amazon Linux sections are explicitly labeled by package manager (YUM vs. DNF), DNF variants are split into version-specific guidance (DNF 4 vs. 5), and openSUSE Zypper and MicroOS instructions are reorganized with improved formatting and expanded service-management steps. ChangesLinux Installation Documentation Clarity
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 ESLint
ESLint install timed out. The project may have too many dependencies for the sandbox. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
src/pages/get-started/install/linux.mdx (1)
1-1:⚠️ Potential issue | 🔴 Critical | ⚡ Quick winMissing
Warningcomponent import.The
Warningcomponent is used at line 182 but not imported. Update the import statement at line 1 to includeWarning.🔧 Proposed fix
-import {Note} from "`@/components/mdx`"; +import {Note, Warning} from "`@/components/mdx`";Also applies to: 182-182
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@src/pages/get-started/install/linux.mdx` at line 1, The import at the top only brings in Note but the page uses the Warning component (referenced as Warning around line 182); update the import statement that currently imports Note (import {Note} from "`@/components/mdx`";) to also import Warning so both components are available (e.g., import {Note, Warning} from "`@/components/mdx`";).Source: Coding guidelines
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Outside diff comments:
In `@src/pages/get-started/install/linux.mdx`:
- Line 1: The import at the top only brings in Note but the page uses the
Warning component (referenced as Warning around line 182); update the import
statement that currently imports Note (import {Note} from "`@/components/mdx`";)
to also import Warning so both components are available (e.g., import {Note,
Warning} from "`@/components/mdx`";).
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: dad94d71-f857-4e99-871c-fa28934bd172
📒 Files selected for processing (1)
src/pages/get-started/install/linux.mdx
I ended up splitting OpenSUSE and OpenSUSE MicroOS, giving instructions to actually add the GPG key and refresh the repo, and a minor fix to add RHEL 8+ for the DNF instructions as RHEL as YUM is just a wrapper around DNF since RHEL 8.
All the OpenSUSE instructions were tested on Leap 16, Tumbleweed and MicroOS.
Summary by CodeRabbit