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