Create group and add your user to it:
sudo groupadd docker
sudo gpasswd -a $USER docker
Then fix sock permissions:
sudo setfacl --modify user:<user name or ID>:rw /var/run/docker.sock
Personal linux knowledge base
Create group and add your user to it:
sudo groupadd docker
sudo gpasswd -a $USER docker
Then fix sock permissions:
sudo setfacl --modify user:<user name or ID>:rw /var/run/docker.sock
dd if=/dev/sdb of=/dev/sdcAfter an hour or so I became curious about the progress. I expected this to be quick thing while it was very slow. Probably I should have done something like this:
dd if=/dev/sdb of=/dev/sdc status=progressCopying was in progress and I didn't want to abort it. After doing some research I found a comment saying that I can open another terminal window and execute kill command there, then terminal where DD is running would show the progress. This indeed worked. In theory this should work too:
sudo kill -USR1 $(pgrep ^dd)