挂载 Windows 网络驱动器

挂载 Windows 网络驱动器

我想在服务器上安装网络驱动器(SBS2008)。我有两个选择:要么使用软呢帽,(已经安装在中央操作系统)服务器,或直接在中央操作系统服务器。这是我尝试过的命令软呢帽机器:

mount -t cifs //192.168.xx.xx/abc /mnt/lan -o username=usernameofwindowsmachine,pass=xyz

如果我使用这个命令什么也不会发生,如果我按进入它继续到下一行并且不打印任何内容。

我也尝试mount中央操作系统直接但没有命令起作用(,,,mount -t smbfs... )。未安装。超时并且smbclientsmbmountsmbmountsmbclient软呢帽用途到岸价并不是中小企业金融系统... 这软呢帽机器已经有一个安装座Windows 2003 服务器,但我不知道这是怎么做出来的。我不想安装任何东西,因为我只想从中央操作系统SBS2008

编辑
所以安装网络驱动器并不那么容易......我走了另一种方式:我看到了WinSCP安装在SBS2008并连接到机器上并设法传输文件。速度不是很好(1.8 MB/秒),但是它可以工作。

答案1

这必须是:

     mount -t cifs //192.168.xx.xx/abc /mnt/lan -o username=usernameofwindowsmachine,password=xyz

另一种方法是凭证文件,例如/root/.cifscredentials

     username=usernameofwindowsmachine
     password=xyz

然后使用:

     mount -t cifs //192.168.xx.xx/abc /mnt/lan -o credentials=/root/.cifscredentials

接下来应该使用:

     mount -t cifs //WindowsDnsName/abc /mnt/lan -o credentials=/root/.cifscredentials,ip=192.168.xx.xx

另一件事是Windows 域名,也可以添加到mount选项中:

     mount -t cifs //WindowsDnsName/abc /mnt/lan -o credentials=/root/.cifscredentials,ip=192.168.xx.xx,domain=WinDomainName

毕竟仔细看看man mount.cifs

相关内容