想要在windows上访问我虚拟机ubuntu的文件夹,然后写了个bat文件net use Z: \\192.168.21.110\myhome "123456" /user:"qnx" /p:n
提示说网络路径不对。然后网上各种查资料。
一、安装samba服务器
sudo apt-get install samba。
而且要到你要共享的目录的属性把共享勾上。
二、配置samba文件
然后又继续查资料
sudo vi /etc/samba/smb.conf
[myhome-share]
comment = Printer Drivers
path = /home/qnx
browseable = yes
read only = no
guest ok = yes
public = no
writeable = yes
然后可以成功访问了!
参考链接http://blog.csdn.net/dddxxxx/article/details/53994748
原文链接:https://www.f2er.com/ubuntu/353405.html