Questions tagged [microsoft-distributed-file-system]

For programming questions about Microsoft's Distributed File System (DFS). (For questions about depth-first search, use the [depth-first-search] tag.)

176 questions
0
votes
1 answer

STRIPS Planner Doesn't Compile

I have been working on a project about the well known problem fox-goose-beans-farmer. I am trying to implement it on a browser based compiler which is https://stripsfiddle.herokuapp.com/ . All of the functions except moveFoxAcross and moveFoxBack…
0
votes
1 answer

jcifs fails to resolve a DFS url

When trying to access an SmbFile with a DFS URL, the jcifs library fails. But when I use the UNC returned by dfsutil it works. NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication( domain, user, pass ); SmbFile folder = new…
Stavr00
  • 3,219
  • 1
  • 16
  • 28
0
votes
0 answers

Will reading a file on a DFS share via SMB from a Java program lock the file?

I have a SMB share (Microsoft DFS) mounted to a linux host. On the linux host I am running a Java program that reads header data from files on the SMB share. The program uses FileInputStream to read the file and does not explicitly place a lock on…
0
votes
1 answer

SMBJ and DFS and "Nested Session"

I have a project, where I am given an id, and then using that ID look up files paths and process them... these files are on various mounted drives, so I am using the SMBJ java libraries to access them. The problem I am having is that some (most) of…
Speckpgh
  • 3,332
  • 1
  • 28
  • 46
0
votes
1 answer

Unable to Create DFS Namespace for DFS Replication

First , please forgive my engrish This could be a longshot , or nobody has ever experienced this before and I really, really need help. This might be the first time I've asked a question here I'm trying to setup dfs replication on two servers (LIVE1…
0
votes
1 answer

SMBJ throwing transport/eof exceptions

I am utilizing SMBJ to read sbm files, and while everything works, it is throwing, com.hierynomus.protocol.transport.TransportException: java.io.EOFException: EOF while reading packet Which I don't understand why, it appears to be closing…
Speckpgh
  • 3,332
  • 1
  • 28
  • 46
0
votes
0 answers

Chrome extension API's for read file on a DFS or NFS

I search for a long time how to read file on a DFS through a chrome extension. I want to check in a google sheets which list file, if there are present on a NFS or on a DFS. I find fileSystem Chrome's api, but it seems, that it didn't do the…
0
votes
2 answers

Get DFS folder target (local server path) from a DFS path in C#

I have a DFS folder path... \\domain.name\SharesRoot\DFSShare I need to get the actual folder target of this root link or in other words the local server path that DFSShare is targetting The local server path/folder target is as…
rawberry
  • 192
  • 9
0
votes
1 answer

execute command as domain user

I want to run below command using domain user : New-DfsReplicationGroup -GroupName "RG01" I have tried 2 ways but for both it give error : 1). Start-Process powershell -Credential domain.com\Admin -password abc1234 New-DfsReplicationGroup -GroupName…
hazel
  • 3
  • 1
  • 3
0
votes
0 answers

java process not setting permission correctly on folder using setfacl

we have a dfs server where the results of automation run are stored. for some weird reason of late the permissions of different folder created by same process and same user have started varying. the directory is created using Files mkdir .to ensure…
0
votes
0 answers

Cleanup script with putFileAs works in windows, but not in Ubuntu, with Windows share

Using Laravel 5.5, I have a method in my controller to get files from 1 folder, rename them and store them in my application and make them publicly accessible. The method: public function cleanup_files() { ini_set('max_execution_time',…
Stretsh
  • 193
  • 1
  • 12
0
votes
1 answer

python depth-first search recursion

i am trying to make a python dfs connecting island with recursion... the program works fine, however on some cases there are logical error in which the output is incorrect For example o o o o x x o o o the output is 1 which is correct. However ,…
0
votes
0 answers

CakePHP 3: SQLSTATE[HY000]: General error: 10 disk I/O error

I'm serving CakePHP 3.x based sites off a Network Load Balanced (NLB) IIS 10 cluster. The php files reside on an external DFS share. When run with debug enabled, CakePHP throws the following error: 2017-08-16 13:45:39 Error: Fixture creation for…
0
votes
1 answer

Storing files on instance HDD where application deployed

I am designing an application which takes files and split/merge them as per content and pushes it to some other system. Once processed no need of those files at all. So, I am planning to store files on HDD where application deployed instead of any…
0
votes
1 answer

DFS implemtation on an Array of objects in Typescript/JavaScript

I have a Class containing keys, values and children like this class Container{ key: string, value: string, children: Container[] } function searchKey(container: Container, key:string){ if (container.key == key) { return…