Network drive mount without "share" in volname?

What is the problem you are having with rclone?

I'd like to create a NETWORK drive MOUNT on Windows without specifying a "share" portion for the volname value that forms the UNC path.

Run the command 'rclone version' and share the full output of the command.

C:\Users\Bob> rclone version
rclone v1.66.0

  • os/version: Microsoft Windows 10 Pro 22H2 (64 bit)
  • os/kernel: 10.0.19045.4412 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.22.1
  • go/linking: static
  • go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

n/a

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone mount "LG_V60_FTP:" "*" --volname "\\V60-FTP"

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

C:\Users\Bob>rclone config redacted
[LG_V60_FTP]
type = ftp
host = XXX
user = XXX
port = 4355
pass = XXX
### Double check the config for sensitive info before posting publicly

A log from the command that you were trying to run with the -vv flag

C:\Users\Bob>rclone mount "LG_V60_FTP:" "*" --volname "\\V60-FTP" -vv
2024/06/22 14:00:10 DEBUG : rclone: Version "v1.66.0" starting with parameters ["rclone" "mount" "LG_V60_FTP:" "*" "--volname" "\\\\V60-FTP" "-vv"]
2024/06/22 14:00:10 DEBUG : Creating backend with remote "LG_V60_FTP:"
2024/06/22 14:00:10 DEBUG : Using config file from "C:\\Users\\Bob\\AppData\\Roaming\\rclone\\rclone.conf"
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: Connecting to FTP server
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: dial("tcp","192.168.15.111:4355")
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: > dial: conn=*fshttp.timeoutConn, err=<nil>
2024/06/22 14:00:10 INFO  : ftp://192.168.15.111:4355: poll-interval is not supported by this remote
2024/06/22 14:00:10 NOTICE: Assigning drive letter "Z:"
2024/06/22 14:00:10 DEBUG : Network mode mounting is disabled
2024/06/22 14:00:10 DEBUG : Mounting on "Z:" ("\\\\V60-FTP")
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: Mounting with options: ["-o" "attr_timeout=1" "-o" "uid=-1" "-o" "gid=-1" "--FileSystemName=rclone" "-o" "volname=\\\\V60-FTP"]
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: Init:
2024/06/22 14:00:10 DEBUG : ftp://192.168.15.111:4355: >Init:
2024/06/22 14:00:10 DEBUG : /: Statfs:
2024/06/22 14:00:10 DEBUG : /: >Statfs: stat={Bsize:4096 Frsize:4096 Blocks:274877906944 Bfree:274877906944 Bavail:274877906944 Files:1000000000 Ffree:1000000000 Favail:0 Fsid:0 Flag:0 Namemax:255}, errc=0
2024/06/22 14:00:10 DEBUG : /: Getattr: fh=0xFFFFFFFFFFFFFFFF
2024/06/22 14:00:10 DEBUG : /: >Getattr: errc=0
2024/06/22 14:00:10 DEBUG : /: Readlink:
2024/06/22 14:00:10 DEBUG : /: >Readlink: linkPath="", errc=-40
2024/06/22 14:00:10 DEBUG : /: Getxattr: name="non-existant-a11ec902d22f4ec49003af15282d3b00"
2024/06/22 14:00:10 DEBUG : /: >Getxattr: errc=-40, value=""
The service rclone has been started.

First off, GREAT new tool I've discovered here in "rclone"!!! OK, now to my question...

With the "rclone mount" command above, I get a FIXED drive mount of the FTP server at UNC path "\V60-FTP" [note only ONE backslash]. Not sure why only one backslash, and why I get a FIXED drive instead of a network drive mount here. But that is not really what I'm asking for help with here. What I'd like to know is: is it possible to get a NETWORK drive mount of the FTP server with a UNC path of "\\V60-FTP".

Let me try to explain a bit better. Forget "rclone" for a moment. I have a SMB server with a number of shares. I can access it in Window Explorer via "\\MyServer". Windows Explorer lists as folders, all the SMB shares "MyServer" is serving. I can then double-click a folder/share and explore deeper into that SMB share.

I'd like to do the same with an FTP server via an "rclone mount". An rclone lsd "LG_V60_FTP:" lists two folders/shares -- "device" and "sdcard". So after mounting with "rclone" [rclone mount "LG_V60_FTP:" "*" --volname "\\V60-FTP"], I'd like to access the server as a NETWORK drive and see the list of it's shares/folders by entering "\\V60-FTP" in Windows Explorer.

I know I can add a "dummy" name at the start of the volname [rclone mount "LG_V60_FTP:" "*" --volname "\\something\V60-FTP"]. Then I get a NETWORK drive mount that I can access via UNC path "\\something\V60-FTP". Or I could add a "dummy" name at the end of the volname [rclone mount "LG_V60_FTP:" "*" --volname "\\V60-FTP\something"]. Then I get a NETORK drive mount that I can access via UNC path "\\V60-FTP\something". But my question is, can I get a NETWORK drive mount of the FTP server at UNC path "\\V60-FTP"?

welcome to the forum,

not sure that is possible.
why is that a problem, just a matter of convenience or what?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.