From c81c6a3d3050f27c7fdee7e2472d61451608198d Mon Sep 17 00:00:00 2001 From: ReGuess <7409957+ReGuess@users.noreply.github.com> Date: Tue, 31 Mar 2020 04:06:41 +0000 Subject: [PATCH] Missing pipes in Ubuntu step 6 Added missing pipes between the ```echo``` and ```tee``` commands in step 6 of the Ubuntu section, RE: https://github.com/RadeonOpenCompute/ROCm_Documentation/issues/64 --- Installation_Guide/Installation-Guide.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Installation_Guide/Installation-Guide.rst b/Installation_Guide/Installation-Guide.rst index 9f8be57f..83344c46 100644 --- a/Installation_Guide/Installation-Guide.rst +++ b/Installation_Guide/Installation-Guide.rst @@ -99,11 +99,9 @@ The current rocm.gpg.key is not available in a standard key ring distribution, b :: - echo 'ADD_EXTRA_GROUPS=1' - sudo tee -a /etc/adduser.conf + echo 'ADD_EXTRA_GROUPS=1' | sudo tee -a /etc/adduser.conf - echo 'EXTRA_GROUPS=video' - sudo tee -a /etc/adduser.conf + echo 'EXTRA_GROUPS=video' | sudo tee -a /etc/adduser.conf 7. Restart the system.