Windows ubuntu

Mount Windows 10 Shared Folder in Ubuntu 16.04

Learn how to mount (sync) a Windows 10 shared folder in Ubuntu 16.04. <pre><code>mkdir ~/sharesudo mount -t cifs //IP_ADDR/_sync_ ~/share -o user=USERNAME,pass=PASSWORD,dir_mode=0777...

Shou Arisaka
1 min read
Oct 17, 2025

This article introduces how to mount (sync) a Windows 10 shared folder in Ubuntu 16.04.

mkdir ~/share
sudo mount -t  cifs //IP_ADDR/_sync_ ~/share -o user=USERNAME,pass=PASSWORD,dir_mode=0777,file_mode=0777

e.g. sudo mount -t  cifs //192.168.3.19/_sync_ ~/share -o user=uesr,pass=hogefuga,dir_mode=0777,file_mode=0777

Share this article

Shou Arisaka Oct 17, 2025

๐Ÿ”— Copy Links