Questions tagged [cifs]

The Common Internet File System (CIFS), also known as Server Message Block (SMB), is a network protocol whose most common use is sharing files on a Local Area Network (LAN).

The Common Internet File System (CIFS), also known as Server Message Block (SMB), is a network protocol whose most common use is sharing files on a Local Area Network (LAN).

330 questions
0
votes
0 answers

After mounting netapp to directory the inside directory doesn't exist

I am trying to mount our netapp but after mounting im getting weird result. I will give the weird results. We are trying to mount a netapp DFS share. First i tried to mount without a specific domain. mount -t cifs -o…
0
votes
1 answer

Mouting with cifs

Im writing a script to create mounts. The system command I use is: sudo /bin/mount -soft -t smbfs -o username='{username}',password='{password}' {server_path} {local_path} It works a treat, but here's the problem.... If an username/password is not…
Jenski
  • 1,458
  • 1
  • 18
  • 29
0
votes
1 answer

move folder and subfolders to mounted cifs share

I am trying to move the main folder (which is the date), and specific subfolders and files to a mounted cifs drive (test). mv -v bam,bed /home/cmccabe/Desktop/NGS/API/6-10-2016 smb://smb/smbdatabay/test mv: cannot move…
justaguy
  • 2,908
  • 4
  • 17
  • 36
0
votes
1 answer

error in exporting glusterfs volume using samba/cifs

I am trying to export glusterfs mount point as the samba export, and then mount it using CIFS protocol. [root@ip-10-10-0-000 /]# df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda1 7.8G 1.3G 6.5G 16%…
nad87563
  • 3,672
  • 7
  • 32
  • 54
0
votes
1 answer

kubernetes flexvolume plugin for cifs

2.4 / coreos I've instructed the kubelet to read plugins from a writable dir ( in coreos the default destination is read-only ): --volume-plugin-dir=/etc/kubelet-plugins/volumeplugins I've placed this handmade flexplugin…
francesco
  • 309
  • 1
  • 16
0
votes
1 answer

Mounting CIFS share using C++

Is there a Windows C++ API to execute a command as a different user ? I am trying to mount a CIFS share from a service which is running as sys admin and I am currently logged in as a Kiosk user so when I try to mount the share using "net use .." I…
Falguni
  • 11
  • 3
0
votes
1 answer

Apt-get repeatedly failing. Authentication warnings and 404 errors

I'm a bit out of my depth here and I need some advice. I'm trying to adapt an SMS gateway to output to a network location. It runs on Voyage Linux. I'm attempting to install the cifs-utils package in order to access a Windows network location, but…
mlloydw
  • 1
  • 2
0
votes
2 answers

Mount AzureFiles on Debian using Cifs-utils

I'm trying to mount an Azure Files storage account as a shared drive on Debian virtual machines (VMs). uname -v #1 SMP Debian 3.16.7-ckt20-1+deb8u2 (2016-01-02) I installed cifs-utils sudo /sbin/mount.cifs -V mount.cifs version: 6.4 sudo smbd…
muichkine
  • 2,890
  • 2
  • 26
  • 36
0
votes
1 answer

CIFS Mount Input/Output Errors With Windows 7 Share

I spent several days trying to solve this, so I'm going to post both the question and answer for the next person. In CentOS 7, mounting a folder shared by Windows 7 with the following command: mount -t cifs //MyWindowsPC/SharedFolder $MOUNTPOINT…
user1777820
  • 728
  • 9
  • 29
0
votes
0 answers

What is folder (null).1001.1001

(null).1001.1001 What is this folder? Where does it come from? drwxrwxrwx 49 appusr appusr 4096 Jan 7 21:52 (null).1001.1001 I think it has something to do with Mr. Root impersonating Mr. AppUsr in a background task, but I posted to…
woodvi
  • 1,898
  • 21
  • 27
0
votes
0 answers

Run a program off a Network Share

I am trying to make a shortcut of some sort, hopefully a .desktop file, to run a jar file from a network share. I want to be able to do this without mounting the drive is possible. I've looked a few other posts on this site, and most talk about…
Rhuarc13
  • 135
  • 1
  • 9
0
votes
2 answers

NetApp 7-Mode simulator CIFS share creation

What are the different ways to create CIFS share on NetApp 7-mode simulator? I created share using command line argument and NetApp onCommand System Manager. I want to know is there any other way to do the same things?
0
votes
2 answers

Mounting a Windows hidden share in /etc/fstab. How do I escape the $

If I want to mount a Windows hidden share to my Ubuntu filesystem, I do this and it works just fine: mount –t cifs –o username=root,password=rootpassword,uid=www-data,gid=www-data //domain/dir\$ /mnt/dir But when I try to make an entry into…
sugapablo
  • 310
  • 2
  • 11
0
votes
3 answers

Automount windows share in ubuntu 14.04 LTS

I know there are many threads about it on the internet, I tried many of them, but I swear, none solved my problem :( I work on a Ubuntu 14.04 LTS, and we have a Windows server where there is a shared folder which we use as a server for…
Cleiton Souza
  • 811
  • 1
  • 10
  • 21
0
votes
1 answer

Fastest way to check multiple files exist on Windows (share)

I've a huge list of file paths to a remote share that I need to check for existence. example input: \server\folder1\file1 \server\folder1\file2 \server\folder2\file3 etc. We currently simply do File.Exists (which basically uses the FindFirstFile…
sternr
  • 6,216
  • 9
  • 39
  • 63