diff --git a/src/bin/mount.rs b/src/bin/mount.rs
index 8ec69106312304424474411846b1699ee403a2a7..88d160f14f8a9172716b09b57c7207dc79427f7d 100644
--- a/src/bin/mount.rs
+++ b/src/bin/mount.rs
@@ -60,8 +60,9 @@ fn disk_paths(paths: &mut Vec<String>) {
         Ok(entries) => for entry_res in entries {
             if let Ok(entry) = entry_res {
                 if let Ok(path) = entry.path().into_os_string().into_string() {
-                    let scheme = path.trim_left_matches(':');
+                    let scheme = path.trim_left_matches(':').trim_matches('/');
                     if scheme.starts_with("disk") {
+                        println!("redoxfs: found scheme {}", scheme);
                         schemes.push(format!("{}:", scheme));
                     }
                 }
@@ -77,6 +78,7 @@ fn disk_paths(paths: &mut Vec<String>) {
             Ok(entries) => for entry_res in entries {
                 if let Ok(entry) = entry_res {
                     if let Ok(path) = entry.path().into_os_string().into_string() {
+                        println!("redoxfs: found path {}", path);
                         paths.push(path);
                     }
                 }