cifs

Ubuntu下共享windows文件夹之cifs

99封情书 提交于 2019-11-30 20:19:38
Ubuntu下共享windows文件夹之cifs 要在Ubuntu下能够使用windows下的文件夹,可以在Ubuntu环境中安装cifs文件系统,然后设置windows下需要共享的文件夹的共享属性为共享,具体操作如下: 1. Ubuntu安装cifs文件系统 ~$ sudo apt-get install cifs-utils 2.windows环境下设置共享文件夹 3.Ubuntu挂载windows文件夹 sudo mount.cifs //windows主机的IP/windows主机的共享文件夹 ~/windows -o user=<登陆windows的账户>,password=’<账户密码>’,uid=<账户uid>,gid=<账户gid>,rw,nounix,noserverino (注:账户的uid和gid可以使用id命令获取) 如: sudo mount.cifs //10.10.10.10/code ./windows -o user=admin,password=’admin’,uid=1000,gid=1000,rw,nounix,noserverino 来源: CSDN 作者: 逗神大人 链接: https://blog.csdn.net/oyoung_2012/article/details/53766297

windows10共享文件夹挂载到Ubuntu

北战南征 提交于 2019-11-30 20:14:33
程序开发人员一般都会把开发目录放在windows系统下,开发环境却是linux。以前我是linux下文件挂载到windows,有同事前车之鉴,万一虚拟机linux挂壁了,很难恢复。现在准备把windows共享文件到linux下。我用的是Ubuntu server14版。遇到很多坑,两个小晚上才搞定。 先祭代码 mount -t cifs -o username=administrator,passwd=,uid="1000",gid="1000" //192.168.0.102/workspace /home/develop 参考命令 sudo mount.cifs //192.168.1.112/Workspace mnt/ -o user=lcg,pass=123456,file_mode=0777,dir_mode=0777 简单吧,没有把一系统报错截图保存下来,很多问题细节也没有记录,可惜。 在window10下建好共享文件夹,开始是windows下有防火墙设置,从linux运行挂载共享文件夹报错连不上或拒绝可以看出。那还说什么,干脆直接 关掉防火墙 。 然后报 0x80070035找不到网络路径 ,这个百度,确定很多服务有并设置 自动 开启状态。 后来是 用户组策略问题 ,这个在我的window10家庭版没有的,没办法升级到window10专业版。也没怎么设置

PHP is_readable() fails on readable samba directory

試著忘記壹切 提交于 2019-11-30 05:59:38
问题 Calls to PHP's is_readable() function are returning false on a directory that is readable from the command prompt. I have changed permissions to most-permissible and still no luck. ls -lad /remote/samba_share drwxrwxr-x 13 me users 0 May 29 15:49 /remote/samba_share ls -la /remote/samba_share drwxr-xr-x 4 me users 0 May 8 14:19 /remote/samba_share/local_dir drwxr-xr-x 16 me users 0 May 14 19:49 /remote/samba_share/second_drive drwxrwxrwx 12 me users 0 May 30 09:42 /remote/samba_share/ext_raid

Open Java SMB server implementation

纵饮孤独 提交于 2019-11-30 04:28:44
问题 Is there an open implementation of a SMB/CIFS server in Java? The only implementation I can find at all is Alfresco's but it isn't open source. A related question: assuming there is no such implementation, I'm surprised there isn't a library providing even a subset of SMB e.g. for simple file transfer. My intuition is that it wouldn't be massively difficult to implement a simple server (but of course would be very difficult to implement a complete solution like Samba). The fact that no one

linux samba客户端

拜拜、爱过 提交于 2019-11-29 17:56:40
Samba不仅仅可以用于Linux与Windows之间的文件共享,也可以用于在Linux与Linux之间进行文件的共享,是一个功能十分强的工具,可以将共享文件夹直接挂载,就像是访问u盘一样来访问共享文件夹,十分便捷。 首先需要安装cifs-utils: sudo apt-get install cifs-utils 然后新建一个文件夹来进行挂载(也可以在别的文件夹,/mnt通常作为挂载点) mkdir /mnt/share 服务器共享的目录全称//192.168.1.5/pi(或者//SAMBA/pi) 用户名:pi 密码:12345678 然后就可以将共享文件夹挂载在/mnt/share下 !注意事先不要cd 到/mnt/share mount.cifs //192.168.1.6/pi /mnt/share -o username=pi mount.cifs //192.168.1.23/sh /share 然后输入密码后回车 然后现在可以看到已经挂载成功 [root @localhost ~]# cd /mnt/share/ [root @localhost share]# ls Desktop Downloads Music opencv Public STUDY Videos Documents GYY oldconffiles Pictures python_games

windows CIFS sabma协议识别

穿精又带淫゛_ 提交于 2019-11-28 20:30:26
windows CIFS sabma协议识别 https://www.cnblogs.com/tcicy/p/9992871.html公司的一个共享服务器就是 win2003的 mount 的时候 需要使用vers=1.0 的参数 win2019 的操作系统 需要使用 cifs1.0 安装才可以用. 今天在linux上搭建了CIFS协议,使用sabma4.7.0版本。 通过smbstatus可以查看smb软件的版本 通过/bin/smbstatus -d 0可以查看目前正连接的客户端。 问题来了:不知道这个smb到底支持哪些SMB协议,目前SMB的版本有1.X 2.02 2.1 3.0 3.0.2 3.1.1 至少网上没有查询到方法或者文档。虽然知道samba4.7.0肯定支持SMB全协议。 在使用wireshark进行协议抓包的时候,发现了这个问题的解决办法: wireshark开始抓包 打开"我的电脑",输入\\1.1.1.1 然后看到wireshark中有NEGTIATE Request和NEGTIATE Response的内容,一般在两台服务器之间的NEGTIATE Response字段中Dialect数据是最终协商完的SMB版本。 从上图可以看到 1.wireshark中标识为SMB2版本,看上去是错误,实际上Microsoft就是这样规定的。只要非SMB1.X版本

通过Alfresco DM 架设网络文件服务-CIFS及WebDAV

喜欢而已 提交于 2019-11-28 16:29:52
Alfresco DM为网络文件服务提供了一个虚拟的文件系统(是纯Java的),并支持CIFS及WebDAV网络文件访问协议。当你需要在企业局域网及互联网上同时架设一个可以供企业员工使用的安全而可靠的文件服务时,Alfresco是一个比较容易管理和实现的选择。 参照以下的步骤来完成服务器与个人电脑的设置: 1. 安装Alfresco 如何安装Alfresco的步骤不在此详细描述了。如果是在Linux环境下安装Alfresco的话,安装完毕后,请先确保Linux服务器上没有启动SMB服务,如果有,请关闭SMB,否则无法使用Alfresco 的CIFS文件服务。 在/<alfresco home>/WEB-INF/classes/alfresco目录下 打开file-system.properties文件,开启cifs服务 cifs.enabled=true 打开file-system.xml文件 修改 <authenticator type="enterprise"/> 这是文件系统的用户认证方式,有三种: 通过alfresco的账户认证 通过微软的活动目录Activity Directory来认证 通过企业的网络密码验证协议,如Kerberos来认证 这里介绍使用alfresco的账户用户进行验证的方法,把type设为alfresco。然后重启alfresco服务。 2.

subversion via cifs is not working

久未见 提交于 2019-11-28 10:58:42
问题 I am trying to use subversion on a linux machine, the repository is on a Microsoft sbs2008 server. (I can access the repository from a Microsoft Windows 7 machine.) Can some one tell me how to get it to work? This is what I have done. # sudo mount -t cifs -v -o credentials=~/Files/server-mount-credentials,uid=richard,nocase,nounix,nosuid //sbs2008/local ~/Files/server-mount/ # svn commit -m "" Adding file1 Sending file2 Transmitting file data ........svn: Commit failed (details follow): svn:

Mount SMB/CIFS share within a Docker container

最后都变了- 提交于 2019-11-27 04:03:16
I have a web application running in a Docker container. This application needs to access some files on our corporate file server (Windows Server with an Active Directory domain controller). The files I'm trying to access are image files created for our clients and the web application displays them as part of the client's portfolio. On my development machine I have the appropriate folders mounted via entries in /etc/fstab and the host mount points are mounted in the Docker container via the --volume argument. This works perfectly. Now I'm trying to put together a production container which will

SMB/samba support on iOS?

会有一股神秘感。 提交于 2019-11-27 03:27:05
问题 I check iOS document and also google it for a while and get the impression that iOS does not support samba (although there is a samba app for jailbreak iPhone). But then how do the app FileBrowser achieves that? Does that mean they implemented samba support by their own ? I also find there is an open source library called tango that provides limited support for samba. So my question is that the best samba support I can get ? 回答1: I spent quite some time in implementing my own SMB client so I