Under Linux access windows shares

Terminal command line:

mount -t cifs -o username=Administrator,password=xxxx //192.168.1.1/winshare /mnt/winshare


Boot automatically mount:

In the / etc / fstab add the following lines.

//192.168.1.1/winshare /mnt/winshare cifs defaults,auto,username=Administrator,password=xxxx 0 0


Then you can access as a local folder as a shared folder to access the windows.

Guess you like

Origin blog.csdn.net/F2004/article/details/18595471