smb

Hudson Windows service slave launch causes SmbException

We just acquired three new build slaves for Hudson, which are running Windows XP x64. We're having issues deploying to these that we haven't seen before (we have two other XP32 machines already slaved). When we first reboot the server, or just after restarting the Server service, the node's log on hudson shows the following (domain nam...

Detecting file modification on a remote SMB share using PHP

I'm writing a PHP process that will run on a Unix machine that will need to monitor a remote SMB server and detect new files that are being uploaded to that box via FTP. It's unlikely I'll be able to It will need to detect: New files being created File upload completing Files being deleted If it was an NFS share, I'd try using FAM ...

NFS or SMB on Windows Share

If I were to create a Windows shared folder, put a database file in that folder to be shared among multiple users of our client app, is that an NFS or SMB shared folder? ...

HTML link to directory in a Samba share, that works on Internet Explorer 7/8

Hello all, 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 file manager on folder3) except Internet Explorer 7 and Internet Explorer 8, which says Permission denied without even asking ...

Reading file over network slow due to extra reads

I'm reading a file and I either read a row of data (1600 sequential reads of 17 bytes) or a column of data (1600 reads of 17 bytes separated by 1600*17=27,200 bytes). The file is either on a local drive or a remote drive. I do the reads 10 times so I expect in each case to read in 272,000 bytes of data. On the local drive, I see what ...

Ant Task To Copy To Windows Share (SMB)

Is there an ant task (similar to ftp or scp tasks) that would allow me to copy a set of files to a windows (smb) share? Edit: I had to create a task using jcifs for this. If anyone needs it, here is the code. Depends on jcifs and apache ioutils. import java.io.File; import java.io.FileInputStream; import java.io.IOException; import ...

Adding SMB to Windows, how safe is this?

I came across a small hack, which claims it enables smb:// on windows. The complaint was that things like <a href="\\computername\path\file.ext">text</a> weren't working. While true that you can use file:///// in your url's, the user wanted to use smb:// so that it's cross-platform. The hack goes as follows: 1) Create this Reg file, sav...

Where do I find a good .NET library for synchronise files over FTP, HTTP and SMB

I need a .NET library to synchronise files from a server to a client (one way). Requirements: Should be a .NET library Needs to be deployed via ClickOnce (that is, no instalation, no COM etc.) Needs to support HTTP and/or FTP and/or SMB Open Source, Free or Commercial ...

cifs/samba client library

Hello. 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 simple API similar to regular POSIX operations of opendir, scandir, read and etc. Thanks in advance! ...

NET USE command And Network Provider interface.

When we command "net use" on command prompt, the result has four columns. Status Local Remote Network OK Z: \\10.x.x.x\Public Microsoft Windows Network X: \\10.y.y.y\Public My Network Redirector The Microsoft Windows Network(SMB)'s Status has OK value, but we don't. It's just empty. ...

Copy files to network path or drive using python on OSX

I have a similar question like the one asked here but I need it to work on OSX. http://stackoverflow.com/questions/2625877/copy-files-to-nework-path-or-drive-using-python So i want to save a file on a SMB network share. Can this be done? Thanks! ...

Combining read operations in SMB

I have an application that reads from a very large binary file. It never has to read the whole file, only small parts of it, which are spreaded accross the file. For example, in VB6 code: ReDim Data(26) as Integer Get #1, 2536, Data ReDim Data(79) as Integer Get #1, 13504, Data ReDim Data(51) as Integer Get #1, 39827, Data Etc.. Fo...

XSendFile can't stat file if on windows samba share?

Hello, I am having trouble getting apache to serve a file through the XSendFile when it is in a directory mounted with samba. To give a little background: I have a Ruby on Rails app that is slowly replacing an ASP.NET application, and I have it running on a linux server running apache2 and passenger. The Windows machine that is running...

Does iOS support file operations via SMB ?

Does iOS (or iPhone OS) support file operations via SMB network shares? If so, are there any documents about how to do this? ...

Is There a Windows SMB Client Opened Implement.

There was a smbmrx sample code using RDBSS in WDK Vista. But since WDK 7600 has been released, the sample was removed. -Do you know why? I'm finding a nice sample code to learn RDBSS. Is there a good open source better than smbmrx sample? ...

Is there An Appllication For Testing Various File I/O In Windows?

I'm developing a network-redirector like SMB. I want to test various file I/O to compare NTFS or SMB implementation. What I want to test are, CreateFile Read, WriteFile DeleteFile RenameFile Set, GetFileInformationByHandle etc. And it' would be better if it can measure each I/Os duration. Is there a program I can use? ...

PHP SAMBA/SMB/CIFS and smb4php classes

have to access some media files from Network storage to be accessible through SMB and Common Internet File System. PHP website is required to do file manipulation operations on remote storage block. You may suggest some alternate method or if you have any idea or may help on: configuring SAMBA/SMB/CIFS SMB/SAMBA/CIFS client configura...

Is there a way with smbmount to mount drives with the dollar sign?

Hi, I am trying to do an equivalent to this: smbmount //srv_files/f$/ /mnt/srv_files -o username=user,password=pass,rw I am getting permission denied though, but if I do: smbmount //srv_files/active/ /mnt/srv_files -o username=user,password=pass,rw then it works just fine, just wondering if this type of mounting with smbmount is eve...

Changing a network volume's name which is represented by Windows Explorer and Common Dialogs.

I want to set the volume name of my network redirector. On 32bit Windows, it's okay. I made it. But on 64bit Windows7, a process which runs as WOW64(eg, EXCEL.EXE) finds following registry path to represent the volume name when we open a file dialog. -I checked it by Process Monitor. HKCU\Software\Microsoft\Windows\CurrentVersion\Ex...

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 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 b...