将 Ubuntu 驱动器映射到 Windows 计算机

将 Ubuntu 驱动器映射到 Windows 计算机

因此,对于相反的问题有很多答案,但我需要能够从我的 Windows 7 机器访问和修改我的 Ubuntu 机器上的文件。

我已尝试过什么?

看起来我已经安装了 Samba(不知怎么的),但是我花了这么多时间才安装软件包来安装其他软件包,修复安装并找出为什么我没有安装某些软件包的某些部分,以便安装其他我不知道的东西!(我是 Ubuntu 新手,以防你看不到......)

我的/etc/samba/smb.config已经修改成这样:

#======================= Share Definitions =======================

# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each 
# user's home director as \\server\username
[homes]
    comment = Home Directories
    browseable = yes

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
    read only = no

...

# This might need tweaking when using external authentication schemes
    valid users = %S

重新启动 Samba sudo service smbd restart

现在回到我的 Windows 机器上,我尝试使用 映射到我的 Ubuntu 驱动器\\[my-machine-name]\[my-machines-admin-user]。出现一个小对话框,要求我输入网络用户名和密码,因此我输入凭据,然后……它告诉我这不行。我可以看到我登录的用户不仅仅是[ubuntu-username]…… [my-windows-machine]\[ubuntu-username]??

我累了,有什么可以帮到我的吗?网上没有太多这方面的信息。

谢谢!

答案1

在 Ubuntu Machine 打开终端

sudo smbpasswd -a USERNAME

其中 USERNAME 是您的用户名

相关内容