minus-squareforbiddenlake@lemmy.worldtoSelfhosted@lemmy.world•Podman: Issues with multiple users running containers simultaneouslylinkfedilinkEnglisharrow-up4·2 days agoNote that sudo echo does not work as non root because the shell redirection is attempted before the command runs. You want echo foo | sudo tee -a /bar instead linkfedilink
Note that sudo echo does not work as non root because the shell redirection is attempted before the command runs. You want
echo foo | sudo tee -a /barinstead