linux系统挂载windows文件夹

首先啊,我在网上查了,都是直接mount或者mount.cifs 用户密码目录就行了,但是我死活都挂载不上,各种无语,

网上查了好多的前辈的挂载方法,但是我就是挂在不上,报错如下:


[[email protected] tuxiang]# mount.cifs //10.10.32.201/file /mnt/server -o user=administrator,pass=hxy123
Retrying with upper case share name
mount error(6): No such device or address
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
[[email protected] tuxiang]# mount.cifs //192.168.10.1/file /mnt/server -o user=administrator,pass=hxy123
Retrying with upper case share name
mount error(6): No such device or address
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
[[email protected] tuxiang]# ping 10.10.32.201
PING 10.10.32.201 (10.10.32.201) 56(84) bytes of data.
64 bytes from 10.10.32.201: icmp_seq=1 ttl=64 time=14.3 ms
64 bytes from 10.10.32.201: icmp_seq=2 ttl=64 time=18.0 ms

我试着看下网络也没问题

最后想到,既然是共享文件夹,那是不是需要windows也是设置共享呢?

说做就做,

文件夹共享OK了

再次尝试


[[email protected] tuxiang]# mount.cifs //192.168.10.1/file /mnt/server -o user=administrator,pass=hxy123
[[email protected] tuxiang]# cd /mnt/server/
[[email protected] server]# ls
MicrosoftOffice_2007_XiTongZhiJia.zip  Total_Control_6.2.0.2886.exe  wftpd32.exe

OK成功了.

还有过程中出现的一个插曲

我做好共享目录后向这是不是要绝对路径才能呗挂载,于是加上了

mount.cifs //192.168.10.1/software/file /mnt/server -o user=administrator,pass=hxy123

这样也不行,应为software不是共享目录,测试完成.

时间: 2024-11-03 03:27:09

linux系统挂载windows文件夹的相关文章

Linux系统挂载Windows系统下的共享文件

声明:本文是小编借鉴大神们的经验,仅供学习使用. 第一步:在Windows系统上选择要共享的文件夹,右击"属性"-"共享"-"高级共享"-勾选"共享此文件"-设置共享名-"权限"-"添加"-"高级"-"立即查找"-"选择本地的用户名"然后一路确定回去.这样就实现了文件的共享 1 2 3 4 5 6 第二步:要求Windows系统

虚拟机Linux共享主机Windows文件夹

 虚拟机Linux共享主机Windows文件夹 2014-08-21      0个评论    来源:ClamReason的专栏   收藏    我要投稿 下面将桌面上的文件夹"1"作为共享文件夹共享给虚拟机中的Linux系统 在WMWare中给虚拟机添加一个Windows主机中的文件夹 此时Linux系统中就有对应的文件夹1了 至此你可以在Linux里面操作Windows中的文件夹了. 下面是操作后的结果 有时候为了方便在Linux使用或者安装软件等要求,会建立软连接,软连接的目

linux系统下修改文件夹目录权限

linux系统下修改文件夹目录权限 文件夹权限问题 Linux.Fedora.Ubuntu修改文件.文件夹权限的方法差不多.很多人开始接触Linux时都很头痛Linux的文件权限问题.这里告诉大家如何修改Linux文件-文件夹权限.以主文件夹下的一个名为cc的文件夹为例. 下面一步一步介绍如何修改权限: 1.打开终端.输入su(没 Linux.Fedora.Ubuntu修改文件.文件夹权限的方法差不多.很多人开始接触Linux时都很头痛Linux的文件权限问题.这里告诉大家如何修改Linux文件

关于Linux系统清理/tmp/文件夹的原理

转自:http://www.opsers.org/base/clean-up-on-the-linux-system-tmp-folder-you-may-want-to-know.html 我们知道,在Linux系统中/tmp文件夹里面的文件会被清空,至于多长时间被清空,如何清空的,可能大家知识的就不多了,所以,今天我们就来剖析一个这两个问题. 在RHEL\CentOS\Fedora\系统中(本次实验是在RHEL6中进行的) 先 来看看tmpwatch这个命令,他的作用就是删除一段时间内不使用

Linux开机挂载windows共享文件夹

https://blog.csdn.net/zhaogang1993/article/details/79573271  (可行) 1.     背景 前博 介绍了如何配置Linux的Samba服务以便Windows系统能映射Linux的共享文件夹,因此我们提出疑问:Linux如何访问其他系统的共享文件夹呢?答案也就是本文介绍的:挂载. 2.     原理 对于Linux系统,根文件系统"/"之外的其他文件要想能够被访问,都必须通过"关联"至根文件系统上的某个目录来

在Linux上挂载Windows共享文件夹,如何开机自动挂载(mount)

使用mount命令在Ubuntu上挂接Windows的共享文件夹 sudo mount //192.168.0.1/linux /mnt/win -o username=user,password=pass dir_mode=777 file_mode=777 说明://192.168.0.1/linux      windows共享文件夹路径/mnt/win                 ubuntu中的挂载点 ----------------------------------------

如何在linux系统下对文件夹名有空格的文件夹进行操作

http://www.2cto.com/os/201409/335119.html 在Windows操作系统中可以轻易地创建\移动\删除文件夹名带有空格的文件夹, 而在linux则需要进行一些特殊的处理才能实现以上功能. (1)创建文件夹 mkdir my\ first 这条命令创建了文件夹"my first",文件夹名中my和first之间有一个空格,在命令行中需要 添加一个"\"符号和一个空格的组合 mkdir my\ \ tow 这条命令创建了文件夹"

Linux系统编程_1_文件夹读取(实现简单ls命令)

闲来无事.随便写写,实现简单的ls命令: | 1 #include <stdio.h> | 2 #include <stdlib.h> | 3 #include <dirent.h> | 4 #include <string.h> | 5 | 6 int main(int argc, char **argv) | 7 { | 8 DIR *pDir; | 9 struct dirent *stDir; | 10 int flag = 0; | 11 | 12

linux cifs挂载windows共享文件夹

#mount -t cifs -o username=Administrator,password=123456 192.168.1.12/shared  /mnt/work (注:红色部分为windows的用户名和密码) #mount -t cifs -o username=Administrator,password= 192.168.1.12/shared /mnt/work (默认用户名为Administrator,密码为空) mount -t cifs 192.168.50.34:te