Files
website/content
serewicz 07a8b3315d Update container-runtimes.md
The current command on line 125 throws a permission error. The sudo elevation of rights applies to the containerd command, not the write (>) to a file owned by root.

This is the command as copied from the current page:
student@master:~$ sudo containerd config default > /etc/containerd/config.toml
-bash: /etc/containerd/config.toml: Permission denied

Instead leverage sudo tee. It works and no more error: 
student@master:~$ containerd config default | sudo tee /etc/containerd/config.toml
2020-11-20 09:16:59 -06:00
..
2020-11-20 09:16:59 -06:00
2020-11-10 16:22:49 -03:00
2020-11-13 12:27:23 +01:00
2020-11-11 02:13:59 +07:00
2020-11-07 02:31:45 +02:00
2020-11-18 01:44:42 +09:00
2020-11-15 15:18:42 +02:00
2020-11-09 00:37:05 +02:00
2020-10-15 01:46:13 +03:00
2020-11-20 00:59:38 +02:00
2020-11-18 11:47:04 +08:00