smb Questions
2
Solved
What is the equivalent to "Connect To Server" on the mac for the command line?
I would like to automate the process rather than summon the dialog every time I need to connect to a server.
2
Solved
I'm using the pysmb library to query shares/directory structures on SMB/CIFS network shares.
def ListShares(Server, Username=None, Password=None, Domain=None):
Ip = socket.gethostbyname(Server)
c...
Colyer asked 12/9, 2013 at 11:7
2
Solved
We are migrating legacy java and .net applications from on-premises VMs to an on-premises Kubernetes cluster.
Many of these applications make use of windows file shares to transfer files from and...
Shewmaker asked 12/2, 2018 at 13:23
2
Solved
I'm working on writing a PowerShell script that will setup a folder structure on the c drive and then turn those folders into shares.
When using the New-SmbShare cmdlet I'm getting a 1332 or a 50 ...
Succor asked 22/2, 2018 at 20:59
1
I try to save file on a Samba server but get the error:
jcifs.smb.SmbAuthException: Logon failure: unknown user name or bad password.
at jcifs.smb.SmbTransportImpl.checkStatus2(SmbTransportImpl.ja...
Wurster asked 30/6, 2023 at 20:9
3
Solved
I have a question about accessing file with Samba JCIFS.
So there is a server I want to access, let's call it server.unv.edu and the workgroup is WKGRP.
There is a share in this server: \\server.un...
13
Solved
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 un...
2
I've been working on a file server product that uses smbcilent to transfer files between client computers and the server. It's been working great so far with our LAMP (Ubuntu) server and Windows ma...
1
I need to implement a virtual filesystem that will be accessed as a Windows share.
It seems Alfresco JLan is doing the job. So far, I have some promising results starting from this answer: How to ...
1
I would like to access a Windows file share share (SMB3) from a docker container, but I do not want to compromise the security of the host machine. All the guides I have read state that I need to u...
Cate asked 30/9, 2021 at 13:52
2
Solved
I have a NAS with a shared CIFS/SMB share that I would like to mount as a volume using docker-compose on Windows.
I have read through multiple suggestions (for instance using plugins, mounting it i...
Otey asked 2/4, 2021 at 15:0
5
As Windows 2012R2 no longer supports the SMB 1 protocol without some registry hacks has anyone had any success working with SMB shares in Java where only SMB 2.1 or SMB 3 are supported?
The JCIFS l...
2
After:
Enabling Microsoft Hyper-V, as explained here:
https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v
Temporarily disabling my Anti-Virus softwa...
2
Solved
I have a remote server with some files.
smb://ftpsrv/public/
I can be authorized there as an anonymous user. In java I could simply write this code:
SmbFile root = new SmbFile(SMB_ROOT);
And get t...
Eclectic asked 26/3, 2018 at 14:20
5
Solved
I have a little problem when I mount a SMB shared folder from a Synology NAS.
I want to mount a shared folder with permissions: git:root 700
But the mounted folder always have permission set to 77...
Gimbals asked 7/11, 2016 at 14:53
4
Solved
I have a shell script, which I am using to access the SMB Client:
#!/bin/bash
cd /home/username
smbclient //link/to/server$ password -W domain -U username
recurse
prompt
mput baclupfiles
exit
Ri...
2
Solved
I'm wondering how I can move a file from one folder to another on an SMB share, using JCIFS.
First, there is no move() method whatsoever.
Then, this approach:
SmbFile smbFromFile = new SmbFile("...
0
I have a Docker Volume used by several containers (Linux containers running on Windows). I would like to be able to access the Volume from the Windows machine through Windows Explorer, in the best ...
Weizmann asked 22/9, 2020 at 13:0
0
I have a dfs share on Windows server 2012. I can open the share and read files from another system in a windows file explorer with a path like: \\dfsserver\usernamepace\Tom\go.png. However, using g...
Autosuggestion asked 17/9, 2020 at 7:45
2
I'm looking for a way to retrieve files newer than a certain date/time on an SMB remote share, all working under Windows. I've been using DirectoryInfo.EnumerateFiles(), and filtering as they are r...
3
Solved
Is there any way to make NFS to ignore specified files and/or directories from the synced folder? I have done it with rsync (rsync__exclude), but don't find any reference for NFS. I'm also looking ...
Bawl asked 16/6, 2015 at 19:5
5
My Java application requires access to a large excel file (1GB+ in size) saved on remote shared folder. I'm using SmbFile to get the file with authentication.
Note: Downloading of the file is not...
2
I am running Docker Version 17.09.0-ce-mac35 on mac. I want to have a samba server running as part of a docker container and then connect to the running samba server from my mac. I'm using https://...
2
Solved
I am trying to create a simple Docker host to try using containers for some .net projects.
I have setup a Windows Server 1803 host and installed Docker EE with powershell and it is running as a se...
Ecumenical asked 18/5, 2018 at 16:12
0
I am trying to write some tests for a Samba client in Java, and need to find a framework that would create a mock Samba server. Something similar to the Mock FTP Server for the FTP protocol. ...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.