ROCm_Documentation icon indicating copy to clipboard operation
ROCm_Documentation copied to clipboard

Missing pipes in Installation Guide

Open ReGuess opened this issue 5 years ago • 0 comments

For the following set commands in step 6 of the instructions for Ubuntu on the Installation Guide:

echo 'ADD_EXTRA_GROUPS=1'
sudo tee -a /etc/adduser.conf

echo 'EXTRA_GROUPS=video'
sudo tee -a /etc/adduser.conf

Each pair should be linked by a pipe; otherwise, the output of echo gets printed directly to stdout, and tee, lacking a piped input, waits there listening on stdin.

ReGuess avatar Mar 31 '20 03:03 ReGuess