From 743b32f12314a8c414ab06033df6e7830fc1dfda Mon Sep 17 00:00:00 2001 From: Maksim Badin <2690324+GenkaOk@users.noreply.github.com> Date: Sat, 25 Oct 2025 21:40:39 +0300 Subject: [PATCH] Add 'sudo' to Debian repository commands Updated commands to include 'sudo' for backports repository setup. --- running.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/running.md b/running.md index b3d08cc4..51a9594c 100644 --- a/running.md +++ b/running.md @@ -211,16 +211,16 @@ These commands require a POSIX compatible shell like `bash`. For other shells li Cockpit is available in Debian since version 10 (Buster). -1. To get the latest version, we recommend to enable the [backports repository](https://backports.debian.org) (as root): +1. To get the latest version, we recommend to enable the [backports repository](https://backports.debian.org): ``` . /etc/os-release echo "deb http://deb.debian.org/debian ${VERSION_CODENAME}-backports main" > \ - /etc/apt/sources.list.d/backports.list - apt update + sudo tee /etc/apt/sources.list.d/backports.list + sudo apt update ``` 2. Install or update the package: ``` -apt install -t ${VERSION_CODENAME}-backports cockpit +sudo apt install -t ${VERSION_CODENAME}-backports cockpit ``` {:.note}