Tagged Questions
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).
7
votes
4answers
9k views
How do you force a CIFS connection to unmount
I have a CIFS share mounted on a Linux machine. The CIFS server is down, or the internet connection is down, and anything that touches the CIFS mount now takes several minutes to timeout, and is ...
6
votes
3answers
576 views
ANDROID: Accessing CIFS Shares in Java
I'm writing my first Android app, which is more or less going to be a mount point manager. Local mounts and NFS mounts have been easy, but I'm not sure of how to go about CIFS shares.
Ideally, after ...
5
votes
3answers
104 views
How can I obtain a case sensitive path on Linux without directory iteration?
Given a mounted cifs file system /network/cifs which is case insensitive, how do I obtain the case sensitive path using C?
For example, the fs has a file /network/cfis/Adena/t.txt. Given ...
5
votes
1answer
244 views
How to open files in Android with default viewer using jCIFS
I'm using the free jCIFS library to connect to my NAS device via CIFS, and it's working great. I can connect and get a list of filenames, etc. without any issues.
Now I'd like to open one of the ...
4
votes
3answers
716 views
File.Copy from Unc path to (same server's) Unc path inquiry
Will data traffic go through the host application program or will be dealt remotely in scenarios where C#'s File.Copy is used:
File.Copy(@"\\SERVER13\LOL\ROFL.txt", @"\\SERVER13\ROFL.txt")
Cheers n ...
2
votes
0answers
206 views
Specify CIFS vs NFS for UNC in Windows?
On Windows 2008 Server R2 (acting as a client) I have the Client from Windows Services for NFS installed and a server mounted as Y: with NFS. That server also supports CIFS. When I open a UNC path ...
1
vote
1answer
106 views
C# Cifs/Smb Client Helper class
I need to read/write to a shared path. I was wondering if there was something similar to the JCIFS library for java in C#?
If not, how do I accomplish this by providing a domain, username and ...
1
vote
2answers
299 views
SMB/samba support on iOS?
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 ...
1
vote
3answers
664 views
File sharing over the internet - WebDAV / SMB / FTP
We are developing a web based application which provides a repository of users case files. Would like the user to be able to access these from their web browser with full read write capability.
For ...
1
vote
0answers
253 views
Problem with Win32 WNet APIs and NFS paths
I am running on a Win2K8R2 system that has Microsoft's NFS client installed in addition to the Windows CIFS client.
Given a UNC path (which the NFS client does support with caveats) I need to be able ...
1
vote
0answers
573 views
Is there a SMB / CIFS (Windows share) C# client with support for credentials?
The question
Is there a .NET class library which would allow me to access remote files hosted on Windows Shares (SMB / CIFS) using specific credentials ?
My requirements
Ability to use specific ...
1
vote
1answer
139 views
Linux: will file reads from CIFS be cached in memory?
I am writing a streaming server for linux that reads files from CIFS mounts and sends
them over a socket. Ideally, linux will cache the file in memory so that subsequent
reads will be faster. Is this ...
1
vote
2answers
512 views
Open source Java library to build CIFS server
We are planning to develop a CIFS server using Java. Note that this will be a commercial product.
To avoid re-invention of wheel, I am looking for a open source Java library which can be used in ...
1
vote
0answers
51 views
CIFS component to wrap around given CRUD web services
I'm pretty sure this is a very particular request, and am slightly proud of it :-)
I am looking for a CIFS (Common Internet File System) adapter/layer/wrapper around an existing set of web services, ...
1
vote
1answer
579 views
Defeating CIFS file caching on Windows / forcing “refresh”
I'm modifying files on a UNIX system and accessing them on a Windows box. The server runs samba and there is some amount of caching done by the client. When I modify the file on the UNIX side, the ...
1
vote
0answers
187 views
How to create CIFS packet and broadcast it in C#?
How do you create a CIFS packet and broadcast it in C#?
Any code snippets would be greatly appreciated.
1
vote
1answer
2k views
HTML link to directory in a Samba share, that works on Internet Explorer 7/8
I want my HTML page to link to a directory in a Samba share (protocol SMB/CIFS Windows share).
In my HREF I wrote file://server/Share2/folder3
Most browsers handle it fine (mount the share and open a ...
1
vote
3answers
1k views
Use a SQL Server 2008 database on a NAS share
I'm working on a project in Visual Studio, and I want to create a local database file (.mdf) within the project directory so that it can be checked into SubVersion and have configuration management. ...
1
vote
5answers
1k views
Record locking problem between linux and Windows
I need to run a bunch of old DOS FoxPro / Clipper applications in linux under DOSEMU.
The programs access their "databases" located on a network server (could be a Windows or
Linux server)
Actually, ...
0
votes
0answers
9 views
Creating multiple CIFS clients on one IP
I am interested in creating as many CIFS clients as possible, that access a single server.
I write my code in C# .Net, on XP.
I need to create a sutuation in which every thread I create accesses the ...
0
votes
1answer
29 views
trying to exec fop via php - 'Can't connect to window server'
I'm on Mac OSX 10.6,
I'm trying to generate a PDF from my Joomla PHP site, using exec to call fop via:
exec("fop -fo /temp/sample.fo -pdf /temp/doc".$now.".pdf > /temp/stdout.log 2> ...
0
votes
0answers
46 views
Linux (F16) desktop has very slow access to mounted CIFS drives
I have a Seagate GoFlex Home, a couple of FreeAgent Go servers, a couple of MyBookWorld devices, and a Samba server on a "real" Linux box. This constitutes about a dozen shares overall. It is ...
0
votes
0answers
28 views
apache cannot access public_html on CIFS
I have my computer on network, and whole homedir is mounted at login with CIFS. When I access http://localhost everything works fine, but when I access http://localhost/~user it fails.
# cat ...
0
votes
0answers
117 views
Connect to NAS device from Android
I'd like to add NAS support to one of my application, and it is critical that the application is capable of streaming the content and that it not has to download it to the device. The application will ...
0
votes
1answer
34 views
Which SMB message tell me the shared folder list? [closed]
If I have multiple shared folders, which SMB message will tell who they are ?
I use wireshark in hoping to catch that message, but it is weird that I can't find the message sent back from SMB server ...
0
votes
0answers
86 views
Getting File Create Notifications for CIFS Mount in Linux
I have a windows share mounted via CIFS on an ubuntu server. I need to a way to know when a new file has been added to the Windows share. I tried this inotify program:
...
0
votes
1answer
116 views
How to execute custom Alfresco script on saving document opened via WebDAV or CIFS?
I want to open an Excel file to edit offline via WebDAV or CIFS and run my script at the Alfresco side to parse the content of the file when user saves a workbook.
Is it possible? How can I do this?
0
votes
0answers
20 views
Content Provider for Network Storage
With most Android devices, mounting CIFS or NFS is only possible when the devices is rooted.
The question is, if it is possible to create a Android Content Provider which offers Pictures and Videos ...
0
votes
2answers
69 views
Inode of directory on mounted share changes despite no change in modification time
I am running Ubuntu 10.4 and am mounting a drive using cifs. The command I'm using is:
'sudo mount -t cifs -o workgroup="workgroup",username="username",noserverino,ro //"drive" "mount_dir"'
...
0
votes
0answers
77 views
How to use virtual Linux guest on Windows host and have the Git, HTTPD server and other dev tools on the linux? [closed]
Currently I can't afford a Mac .
I need a UNIX environment for my development but still be able to use Adobe, Corel, Microsoft office products.... all things that are platform dependant or require ...
0
votes
0answers
49 views
GFS2 file system via -loop mount of image on CIFS share — will it work?
I'm sure this will work for one user, but will it work for simultaneous access as well as NBD? I'm not concerned with performance, but with ease of setup.
I have a CIFS server, and no NFS server, and ...
0
votes
2answers
810 views
What does cifs_mount failed w/return code = -22 indicate
I am trying
sudo mount -t cifs //<server>/<share> -o username=user@domain,password=**** /mnt/<mountpoint>
error message:
mount: wrong fs type, bad option, bad superblock on ...
0
votes
1answer
107 views
How index cifs server with solr
is it possible to index some document on cifs server with solr ?
Thanks
0
votes
1answer
69 views
Samba: does current linux client support asynchronous reads?
In the interest of increasing performance, is it possible to read asynchronously from a CIFS mounted file, on linux?
Thanks!!!
0
votes
1answer
114 views
libsmbclient GPL issue. Seeking alternatives
We intend to develop an application that can access remote SMB shares from Linux, without mounting .e.g. in the form of "smb://sharedserver/sharedfolder".
It seems that we can achieve this by using ...
0
votes
2answers
362 views
How can I re-use an existing CIFS session or explicitly terminate one programmatically (W2K8 to Netapp)?
I have a program that runs on Windows and scans shares on a Netapp filer over CIFS. When the scanner runs on W2K3 and exits, running "cifs sessions -c " on the Netapp filer shows that the session is ...
0
votes
1answer
123 views
0
votes
1answer
85 views
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 ...
0
votes
2answers
1k views
Open Java SMB server implementation
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 ...
0
votes
1answer
562 views
cifs/samba client library in C#
I am looking for cifs/smb client library in C# for accessing a SMB share from windows cifs client.
Any code snippet is highly appreciated.
0
votes
0answers
364 views
Cross-platform build UNC share (Windows->Linux) - possible to be case-sensitive on CIFS share?
To optimize builds between Windows and Linux (Ubuntu 10.04), I've got a UNC share of the source tree that is shared between systems, and all build output goes to local disk on each system. This ...
0
votes
1answer
608 views
cifs/samba client library
I'm looking for some stand alone library to access SMB/CIFS shares.
I am not looking for mounting the shares, just browsing and accessing the files for reading.
Preferable something with a simple ...
0
votes
1answer
404 views
Static files served from CIFS Windows share through nginx/Ubuntu aren't fully sent to the browser
We have a Rails app with nginx front end. Users can upload files, which are stored on a Windows network share, and retrieve them later. The uploaded files are served statically through nginx.
...
0
votes
3answers
773 views
Samba, CIFS and Deleting Files
So I've got a Samba share located on server A. I have that share mounted to two other servers, B and C. The idea is that B and C need to write temporary files to a single location so that multiple ...
0
votes
4answers
318 views
Recursively traverse Samba shares?
With bash on linux, how would I write a command to recursively traverse shares mounted, and run commands on each file, to get the file type and size, permissions etc, and then output all of this to a ...