I want to copy some files from one computer to another computer using LAN or WiFi.But i am not able to see windows shared drive on Linux network or Linux shared drive on window network.Can anyone suggest me how to configure the network for sharing files between Linux and windows.
How to share files between linux and window os from Network sharing
9.8k Views Asked by Deependra Kushwah At
3
There are 3 best solutions below
0

Access Windows file in Linux
Mount –t cifs –o username=YourUserName,password=YourPassword --verbose //WindowsComputerName/Folder /media/Folder
- Don’t input domain name in front of YourUserName.
- Don’t input space between username and password.
- You can ignore apostrophe of username.
- You’d better input –verbose so that you can see detail information after execution.
- You should create /media/Folder in advance.
- If it prompts “Permission Denied” after execution, you can read Windows event log to get the root cause!
Refer to: http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html
Access Linux file in Windows
http://www.howtogeek.com/176471/how-to-share-files-between-windows-and-linux/
You have to configure samba or CIFS. Check the link http://cri.ch/linux/docs/sk0001.html or http://www.cyberciti.biz/tips/how-to-mount-remote-windows-partition-windows-share-under-linux.html
Thanks & Regards,
Alok