Tagged Questions
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 ...
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 ...
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
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
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
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
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
1answer
68 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
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
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 ...