Windows – Mount a Linux folder in Windows

mountUbuntuwindows 10

To mount a Windows folder in Linux, I can just mount //<server>/<file> <location> cifs -o user=<user>

How can I do the reverse — Get a Linux folder on my Windows dekstop, accessable and editable in realtime?

I would prefer the mounted entity be a folder, say, on my Win desktop; however, it's no biggie if it has to be a drive.

Additionally, I would prefer this is done with no extra programs. If it has to use software, OK.

Finally, speed is very important here. The reason I'm doing this is because OneDrive was too slow and I had to switch.

Using Windows 10 and Ubuntu on LAN.

Thanks.

Best Answer

if you want to stay on a network connection, you have to use the smb protocol for the connection. in this case you have to set up a samba server on your Ubuntu computer. then you can use it on Windows without installing something there.

if speed is that necessary that you want to insert the drive and use a sata connection, then try ext2fsd, a tool which mounts any ext Filesystem on Windows

if you are using btrfs, you don't have a chance to read it directly on your Windows machine, in that case you must have got a running Linux with a file server. if you are using zfs then it's the same thing like with btrfs

EDIT what you've heard, that samba is bad is in some cases very right. if you want to protect your data and want to keep them secret, samba is as bad as posting the data somewhere in the Internet. but because of the low encryption and security overhead it's also kind of the fastest protocol

Related Question