344 questions
Advice
0 votes
0 replies
12 views
Docker Swarm file transfer on shared Windows/Linux PCs
I have a Docker Swarm setup where a worker node needs to copy files to the master node. The worker is running on Windows via WSL, and the master is an Ubuntu server. Both nodes are connected through a ...
0 votes
1 answer
115 views
Decompress zlib/deflate with a shared dictionary in Javascript
Zlib/deflate doesn't exactly support shared dictionaries but you can "pre-load" the output stream with up to 32kB of data. For example in Python: >>> from zlib import compressobj &...
0 votes
0 answers
195 views
xp_dirtree accessing shared folder with permission
I am trying to use xp_dirtree to get files from a shared folder, but the result returned is empty I think it is because the shared folder is accessible only with username and password, but I could not ...
0 votes
0 answers
146 views
Why NodeJS fs module won't read or write to visible folder shared on the network?
I'm scaling my NodeJS app (on Windows 11) and need to setup additional workstations (Windows 11 aswell). Right now I simply need a shared folder, so I created one and made it visible on the network. ...
0 votes
0 answers
323 views
Windows OpenSSH access of UNC path appears limited to read only?
I have a windows machine (AWS instance) that can visit and mount a shared network drive (samba/linux). When I am on the windows machine itself via RDP I can visit the path, mount it as a drive, make ...
0 votes
1 answer
82 views
Access image folder from Laravel Project A to Laravel B, C, D etc
Let's say I have main project Laravel A, which stores photos of employees. I need the rest of the Laravel projects B, C and so on to access or use these photos from Laravel A (Like profile pictures ...
0 votes
1 answer
1k views
Cannot Access Windows Shared Folder with IP but can using hostname
While Trying to reach Shared Folder with IP Address getting Error as shown here Error Message where trying with IP. Can Access by using hostname. We can access by using hostname. It Happens frequently,...
-1 votes
1 answer
590 views
"[Errno 2] No such file or directory: b'net'" when trying to use Ansible localhost to connect to a Windows share folder
I am unable to use Ansible localhost (Linux) to connect to a share folder in a Windows server. I am getting "[Errno 2] No such file or directory: b'net'". However, I have checked that my ...
0 votes
1 answer
920 views
Get-Childitem using shared folders
I have a script to copy some files and child items from a network computer to a shared drive and I am using this: #(ComputerName) Not real name, for security reasons. #(ParentFolderName) Not real name,...
0 votes
1 answer
433 views
How to read and parse CSV files on a remote server instead of doing it on ansible machine/localhost?
My original playbook and tasks that is meant to run on localhost: - name: Fetch file fetch: src: \\10.14.2.130\shared\folder\Data\{{ filename }} dest: /var/lib/awx/projects/Windows/ flat:...
0 votes
0 answers
175 views
Folders created with Python code from 2 Colab accounts in one Google Drive shared folder in a small time period unexpectedly have the same names
There’s a Google Drive shared folder shared_folder where 2 different accounts can create folders with Python code run in Jupyter notebooks on Colab. If one of these accounts try to create 2 duplicated ...
0 votes
1 answer
338 views
Accessing a shared directory from my android app
I have configured Samba on my Raspberry Pi to have a shared folder on my LAN. The access is user and passwordfree. I can access it from my PC on windows and even on my android phone with some file ...
1 vote
1 answer
744 views
"Argument path does not exist or is not accessible" when trying to find a file in share folder
After connecting to share folder \10.14.2.130\shared\ , I am trying to search for files in 'Data' folder inside the share folder. - name: Search for files in Data folder win_find: paths: \\...
2 votes
0 answers
741 views
Accessing Network Share Folders in Flutter
Is there a way to access the network share folder with the provided credentials in flutter? I've tried using the Uri's constructor to pass in the credentials but I'm met with an error saying that they ...
0 votes
0 answers
445 views
Reading spatial data from mapped network drive
I am working with a shared folder containing multiple datasets. Because this is part of a teamwork and so that we can all use the same scripts without the need to always update the local paths in our ...