CentOS系统mount windows共享文件夹

格式:

mount -t cifs //IP/share-folder  /mnt-point -o username=your-username,passwd=your-password

把windows(192.168.230.1)下F分区(或者是一个文件夹)共享给用户user(密码为password),确保在cmd中输入\\192.168.230.1可以看到该共享文件夹

[[email protected] mnt]# mount -t cifs //192.168.230.1/f /mnt/share/ -o username=user,passwd=password
[[email protected] mnt]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2              18G  2.5G   15G  15% /
tmpfs                 137M     0  137M   0% /dev/shm
/dev/sda1             291M   32M  244M  12% /boot
.host:/                40G   28G   13G  70% /mnt/hgfs
//192.168.230.1/f     3.9G   48M  3.8G   2% /mnt/share

常见错误:

1、命令行未包含用户名和密码

[[email protected] mnt]# mount -t cifs //192.168.230.1/f /mnt/share/

mount: wrong fs type, bad option, bad superblock on //192.168.230.1/f,

missing codepage or helper program, or other error

(for several filesystems (e.g. nfs, cifs) you might

need a /sbin/mount.<type> helper program)

In some cases useful info is found in syslog - try

dmesg | tail  or so

[[email protected] mnt]# dmesg | tail

CIFS VFS: cifs_mount failed w/return code = -22

2、命令行未包含密码

[[email protected] mnt]# mount -t cifs //192.168.230.1/f /mnt/share/ -o username=***

mount: block device //192.168.230.1/f is write-protected, mounting read-only

mount: cannot mount block device //192.168.230.1/f read-only

[[email protected] mnt]# dmesg | tail

Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE

CIFS VFS: Send error in SessSetup = -13

CIFS VFS: cifs_mount failed w/return code = -13

CentOS系统mount windows共享文件夹,布布扣,bubuko.com

时间: 2024-10-31 12:34:28

CentOS系统mount windows共享文件夹的相关文章

mac系统访问windows共享文件夹

1. 打开finder 2. 找到前往 - 连接服务器 3. 打开后,输入smb://ip地址  点击连接 4. 选择共享文件夹 5. 点击好,之后就可以了,如下图

centos 7 mount win共享文件夹 开机自动挂载

开机自动挂载 如果我们想实现开机自动挂载某设备,只要修改/etc/fstab文件即可. 文件挂载的配置文件:/etc/fstab 查看此文件可知 每行定义一个要挂载的文件系统: 其每行的格式如下 要挂载的设备或伪文件系统  挂载点  文件系统类型  挂载选项 转储频率 自检次序 UUID=6efb8a23-bae1-427c-ab10-3caca95250b1 /boot  xfs    defaults    0 0 要挂载的设备或伪文件系统:设备文件.LABEL(LABEL="")

[转]CentOS虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器?

CentOS虚拟机如何设置共享文件夹,并在Windows下映射网络驱动器? 转自这里 一.为什么要这么做? 最近在做Linux下的软件开发,但又想使用Windows下的编程工具“Source Insight”. 二.安装环境 本机系统:Windows 7 旗舰版 VMware:VMware Workstation 9.0 CentOS:CentOS 6.4 网络适配器设置为:NAT 转换 三.查看是否已经安装“samba” 命令:rpm -qa|grep samba 输出结果: samba-cl

虚拟机Oracle VM VirtualBox linux系统如何访问windows共享文件夹

1. 在本机系统设置一个共享文件夹,用于与Ubuntu交互的区域空间.     2.右击状态栏上共享文件夹图标或菜单栏"设备-共享文件夹",打开共享文件夹设置,如图示 3.点击共享文件夹设置框,右上角的添加按钮 选择之前本机设置的共享文件夹 此时一定不可以勾选自动挂载 4.设置好共享名后,进入Linux系统,打开终端,先执行命令,在挂载点目录添加"Windows_Share"目录,接着执行" mount -t vboxsf VirtureBox_Share

centos 配置 samba 与windows共享文件夹

yum install samba/etc/samba/smb.confdirectory mask = 0777 ← 指定新建目录的属性(以下4行) force directory mode = 0777 directory security mask = 0777 force directory security mode = 0777 create mask = 0777 ← 指定新建文件的属性(以下4行) force create mode = 0777 security mask =

mount挂载windows共享文件夹

今天在centos 7下挂载windows共享文件夹遇到报错 mount error(115): Operation now in progress Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) 折腾了半天才去看了一眼日志 messages内 Oct 28 03:17:59 localhost kernel: CIFS VFS: Error connecting to socket. Aborting operation

在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中的挂载点 ----------------------------------------

烂泥:CentOS6.5挂载windows共享文件夹

本文由秀依林枫提供友情赞助,首发于烂泥行天下. 由于工作需要,需要把本机的文件夹共享出去,然后让CentOS服务器临时使用下. 服务器使用的是CentOS系统,而本机使用的win7系统.考虑到是临时使用,所以就不打算搭建FTP和Samba服务器,直接通过CentOS挂载windows共享文件夹的方式来达到此目的. 既然是使用windows共享文件夹的方式,那么我们必须先在本机创建一个共享目录.如下: 在此需要注意下,我们给administrator管理员的共享权限是可读写权限.等下我们会在Cen

linux下如何挂载windows共享文件夹

环境:windows8.1 with update (IP:192.168.80.135) centos6.5 最小化安装的系统 步骤: 1.在windows的E盘创建了一个文件夹myhome,在myhome下随便新建一个文件,然后把该文件夹设置共享.windows下如何共享文件夹步骤请自行百度. 2.在linux下安装cifs软件 yum install cifs-utils 3.挂载命令 mount.cifs -o username="administrator",password