9fdf04
diff --git a/list.go b/list.go
9fdf04
index 0313d8c..328798b 100644
9fdf04
--- a/list.go
9fdf04
+++ b/list.go
9fdf04
@@ -50,7 +50,7 @@ var listCommand = cli.Command{
9fdf04
 	ArgsUsage: `
9fdf04
 
9fdf04
 Where the given root is specified via the global option "--root"
9fdf04
-(default: "/run/runc").
9fdf04
+(default: "/run/runc-ctrs").
9fdf04
 
9fdf04
 EXAMPLE 1:
9fdf04
 To list containers created via the default "--root":
9fdf04
diff --git a/main.go b/main.go
9fdf04
index 278399a..0f49fce 100644
9fdf04
--- a/main.go
9fdf04
+++ b/main.go
9fdf04
@@ -62,7 +62,7 @@ func main() {
9fdf04
 	v = append(v, fmt.Sprintf("spec: %s", specs.Version))
9fdf04
 	app.Version = strings.Join(v, "\n")
9fdf04
 
9fdf04
-	root := "/run/runc"
9fdf04
+	root := "/run/runc-ctrs"
9fdf04
 	rootless, err := isRootless(nil)
9fdf04
 	if err != nil {
9fdf04
 		fatal(err)
9fdf04
@@ -70,7 +70,7 @@ func main() {
9fdf04
 	if rootless {
9fdf04
 		runtimeDir := os.Getenv("XDG_RUNTIME_DIR")
9fdf04
 		if runtimeDir != "" {
9fdf04
-			root = runtimeDir + "/runc"
9fdf04
+			root = runtimeDir + "/runc-ctrs"
9fdf04
 			// According to the XDG specification, we need to set anything in
9fdf04
 			// XDG_RUNTIME_DIR to have a sticky bit if we don't want it to get
9fdf04
 			// auto-pruned.
9fdf04
diff --git a/man/runc-list.8.md b/man/runc-list.8.md
9fdf04
index f737424..107220e 100644
9fdf04
--- a/man/runc-list.8.md
9fdf04
+++ b/man/runc-list.8.md
9fdf04
@@ -6,7 +6,7 @@
9fdf04
 
9fdf04
 # EXAMPLE
9fdf04
 Where the given root is specified via the global option "--root"
9fdf04
-(default: "/run/runc").
9fdf04
+(default: "/run/runc-ctrs").
9fdf04
 
9fdf04
 To list containers created via the default "--root":
9fdf04
        # runc list
9fdf04
diff --git a/man/runc.8.md b/man/runc.8.md
9fdf04
index 6d0ddff..337bc73 100644
9fdf04
--- a/man/runc.8.md
9fdf04
+++ b/man/runc.8.md
9fdf04
@@ -51,7 +51,7 @@ value for "bundle" is the current directory.
9fdf04
    --debug              enable debug output for logging
9fdf04
    --log value          set the log file path where internal debug information is written (default: "/dev/null")
9fdf04
    --log-format value   set the format used by logs ('text' (default), or 'json') (default: "text")
9fdf04
-   --root value         root directory for storage of container state (this should be located in tmpfs) (default: "/run/runc" or $XDG_RUNTIME_DIR/runc for rootless containers)
9fdf04
+   --root value         root directory for storage of container state (this should be located in tmpfs) (default: "/run/runc-ctrs" or $XDG_RUNTIME_DIR/runc-ctrs for rootless containers)
9fdf04
    --criu value         path to the criu binary used for checkpoint and restore (default: "criu")
9fdf04
    --systemd-cgroup     enable systemd cgroup support, expects cgroupsPath to be of form "slice:prefix:name" for e.g. "system.slice:runc:434234"
9fdf04
    --rootless value    enable rootless mode ('true', 'false', or 'auto') (default: "auto")