linux 局域网挂载 windows文件

首先要保证可以互ping,然后用smbclient -L A.B.C.D (windows的ip地址)来查看windows中可以用来挂载的文件夹名。


sudo apt-get install cifs-utils         //安装mount.cifs

然后可以用 mount.cifs //A.B.C.D./share /mnt/share 就可以挂载成功了


其中可能出现一些问题 ,比如:

mount error(5):input/outpit error

Refer to the mount.cifs(8) manual page 

需要加上目标机(windows)的用户名和登陆密码 

mount.cifs //A.B.C.D/share /mnt/share -o username=用户名%密码



你可能感兴趣的:(嵌入式)