Index: uspace/app/bdsh/cmds/modules/cp/cp.c
===================================================================
--- uspace/app/bdsh/cmds/modules/cp/cp.c	(revision f77c1c90c1f223647872d5cefa2d86f63bc846d7)
+++ uspace/app/bdsh/cmds/modules/cp/cp.c	(revision 4c6de4fedd187a7892fc56495e5fedb52f123582)
@@ -28,4 +28,5 @@
 
 #include <errno.h>
+#include <str_error.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -432,5 +433,5 @@
 
 	if (rc != EOK) {
-		printf("\nError copying %s, (%d)\n", src, rc);
+		printf("\nError copying %s: %s\n", src, str_error(rc));
 		return rc;
 	}
Index: uspace/app/bdsh/cmds/modules/ls/ls.c
===================================================================
--- uspace/app/bdsh/cmds/modules/ls/ls.c	(revision f77c1c90c1f223647872d5cefa2d86f63bc846d7)
+++ uspace/app/bdsh/cmds/modules/ls/ls.c	(revision 4c6de4fedd187a7892fc56495e5fedb52f123582)
@@ -32,4 +32,5 @@
 
 #include <errno.h>
+#include <str_error.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -184,5 +185,5 @@
 		if (rc != EOK) {
 			printf("ls: skipping bogus node %s\n", buff);
-			printf("error=%d\n", rc);
+			printf("error=%s\n", str_error_name(rc));
 			goto out;
 		}
Index: uspace/app/bdsh/cmds/modules/mv/mv.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mv/mv.c	(revision f77c1c90c1f223647872d5cefa2d86f63bc846d7)
+++ uspace/app/bdsh/cmds/modules/mv/mv.c	(revision 4c6de4fedd187a7892fc56495e5fedb52f123582)
@@ -30,4 +30,5 @@
 #include <stdlib.h>
 #include <errno.h>
+#include <str_error.h>
 #include <vfs/vfs.h>
 #include "config.h"
@@ -62,6 +63,6 @@
 	rc = vfs_rename_path(argv[1], argv[2]);
 	if (rc != EOK) {
-		printf("Unable to rename %s to %s (error=%d)\n",
-		    argv[1], argv[2], rc);
+		printf("Unable to rename %s to %s: %s)\n",
+		    argv[1], argv[2], str_error(rc));
 		return CMD_FAILURE;
 	}
Index: uspace/app/bdsh/cmds/modules/unmount/unmount.c
===================================================================
--- uspace/app/bdsh/cmds/modules/unmount/unmount.c	(revision f77c1c90c1f223647872d5cefa2d86f63bc846d7)
+++ uspace/app/bdsh/cmds/modules/unmount/unmount.c	(revision 4c6de4fedd187a7892fc56495e5fedb52f123582)
@@ -31,4 +31,5 @@
 #include <vfs/vfs.h>
 #include <errno.h>
+#include <str_error.h>
 #include "config.h"
 #include "util.h"
@@ -68,5 +69,5 @@
 	rc = vfs_unmount_path(argv[1]);
 	if (rc != EOK) {
-		printf("Unable to unmount %s (rc=%d)\n", argv[1], rc);
+		printf("Unable to unmount %s: %s\n", argv[1], str_error(rc));
 		return CMD_FAILURE;
 	}
