无法看到 LAN 内的 Windows 7 计算机共享文件夹

无法看到 LAN 内的 Windows 7 计算机共享文件夹

我在列表中根本看不到 Windows 7 计算机。我可以从 Windows 7 计算机看到 Ubuntu 14.04 计算机的共享文件,但反过来却看不到。

我尝试使用其他客户端,如 FileZilla、PuTTY ssh,结果相同。

sudo mount -t ntfs \\216.47.154.95\Ks\ /mnt/windows -o username=MMAE这是我创建目录/mnt/windows并挂载 Windows 驱动器后运行命令时得到的结果。

:~$ sudo mount -t ntfs \\216.47.154.95\Ks\ /mnt/windows -o username=MMAE 
Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
One can change the type of mount containing the directory dir:
       mount --make-shared dir
       mount --make-slave dir
       mount --make-private dir
       mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
       mount --make-rshared dir
       mount --make-rslave dir
       mount --make-rprivate dir
       mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say  man 8 mount.

有什么办法可以解决这个问题吗?

答案1

在网络和共享中心窗口中,单击“更改高级共享设置

在此处输入图片描述

对于您当前的配置文件,请调整以下两个设置:

  • 启用网络发现

  • 打开文件和打印机共享

在此处输入图片描述

配置完这些设置后,点击“保存更改”。现在检查你是否能看到 ubuntu 文件

希望这可以帮助!

答案2

请检查您是否已在 ubuntu 中安装了共享驱动器,您可以使用以下命令列出该驱动器

root@ubuntu-desktop:~# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sdb1        71G   47G   21G  70% /
udev            2.0G  4.0K  2.0G   1% /dev
tmpfs           784M  812K  783M   1% /run
none            5.0M     0  5.0M   0% /run/lock
none            2.0G  144K  2.0G   1% /run/shm
cgroup          2.0G     0  2.0G   0% /sys/fs/cgroup

如果没有创建挂载点(/mnt/windows)并安装你的 Windows 驱动器

sudo mkdir /mnt/windows

sudo mount –t ntfs \\servername\sharename /mountpoint –o username=userid

它会要求您输入 Windows 管理员密码,您可以输入该密码

例如:

sudo mount –t ntfs \\192.168.1.150\vmsdata\ /mnt/windows –o username=henry

现在编辑您的文件系统文件并检查您是否有 Windows 共享的条目。

vi /etc/fstab

如果没有条目,请将该条目添加到您的 fstab 文件中并检查您是否能够查看文件。

安装 Windows 驱动器后,通过使用命令查看驱动器进行确认

df -h

笔记:请确认您是否可以从 Ubuntu 计算机 ping 您的 Windows 计算机

希望这可以帮助!

相关内容