
In Windows
1. Create a new test folder in Windows operating system. Share and give the new test folder a full permission.
In Linux
1. We are going to mount the new test folder from Windows operating system in /tmp directory in Linux operating system. Mount the folder using the command below (1 line command)
# mount -t cifs -o username=<Windows-Username>,password=<Windows-Password> //<Windows-IP-Address>/<New-Test-Folder> /tmp
2. Once the mount command executed, you can verify the folder from Windows operating system in Linux operating system.
# cd /tmp # ls


