From 9006d5a52d1a68df917e0b5fe483535aa2aabf79 Mon Sep 17 00:00:00 2001 From: blzzua Date: Sat, 6 May 2023 14:58:20 +0300 Subject: [PATCH] change comments in "commands" because /* expanding in shell and may invoke unwanted behavior. Removing necessary packages as example. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 15c671d..1a5ec57 100644 --- a/README.md +++ b/README.md @@ -260,13 +260,13 @@ You could also download pre-built package from https://github.com/GPUOpen-Driver Below is the installation instruction: #### Ubuntu 20.04, 22.04 ``` -sudo dpkg -r amdvlk /* If old version is installed on the machine, remove it first */ +sudo dpkg -r amdvlk # If old version is installed on the machine, remove it first sudo dpkg -i amdvlk_x.x.x_amd64.deb sudo apt-get -f install ``` #### RedHat 8.6, 9.0 ``` -sudo rpm -e amdvlk /* If old version is installed on the machine, remove it first */ +sudo rpm -e amdvlk # If old version is installed on the machine, remove it first sudo rpm -i amdvlk-x.x.x.x86_64.rpm ``` @@ -274,7 +274,7 @@ For Ubuntu, you could also install the latest driver build from https://repo.rad ``` sudo wget -qO - http://repo.radeon.com/amdvlk/apt/debian/amdvlk.gpg.key | sudo apt-key add - sudo sh -c 'echo deb [arch=amd64,i386] http://repo.radeon.com/amdvlk/apt/debian/ bionic main > /etc/apt/sources.list.d/amdvlk.list' -sudo apt-get remove amdvlk /* If old version is installed on the machine, remove it first */ +sudo apt-get remove amdvlk # If old version is installed on the machine, remove it first sudo apt update sudo apt-get install amdvlk ```