First create a folder where you want to mount windows folder in. Then mount the target windows shared folder in it using below commands. mkdir /mnt/winfolder mount -t cifs //10.0.0.1/share-name /mnt/winfolder -o username=zaib,password=mypassword,domain=mydomain # 10.0.0.1 is Windows System where our required folder is shared # change the user name , password, and domain as [...]
↧