From 2e266f8d90b6b85ad93d2cad03ed6fc6a065e70d Mon Sep 17 00:00:00 2001 From: mhafizazh Date: Thu, 2 Jul 2026 12:02:37 -0600 Subject: [PATCH] add command instruction in linux installation --- .../software/install-and-run/linux/_index.md | 20 +++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/content/en/software/install-and-run/linux/_index.md b/content/en/software/install-and-run/linux/_index.md index 11a5675e..0445e036 100644 --- a/content/en/software/install-and-run/linux/_index.md +++ b/content/en/software/install-and-run/linux/_index.md @@ -49,10 +49,22 @@ Standard installations are ideal for users who want to explore Medley (including ``` ubuntu@oio:~$ tar -xz -C -f ``` -4. Using the package manager for your distro (e.g., apt for Debian and Ubuntu distros), install the following packages: -a) man-db -b) xdg-utils -c) tigervnc +4. Using the package manager for your distro (e.g., apt for Debian and Ubuntu distros), install the required packages (`man-db`, `xdg-utils`, and `tigervnc`) by running the appropriate command below: + + **For Ubuntu / Debian / Mint / MX Linux:** + ```bash + sudo apt update && sudo apt install -y man-db xdg-utils tigervnc-standalone-server tigervnc-xorg-extension + ``` + + **For Fedora / RHEL:** + ```bash + sudo dnf install -y man-db xdg-utils tigervnc-server + ``` + + **For Arch Linux:** + ```bash + sudo pacman -Syu --noconfirm man-db xdg-utils tigervnc + ``` > ***Notes:*** > 4.1. If *xdg-utils* is not available for your Linux distro, then Medley will still run well, with the exception of a few sub-systems that require opening external (to Medley) files.