1,748 questions
0 votes
2 answers
193 views
Mount an APFS snapshot using the mount() function, not the mount tool
I want to mount an APFS snapshot using code running on macOS, using the equivalent of this tool invocation: mount_apfs -o ro,nobrowse -s snapshot_name snapshot_volume destpath As there's no ...
0 votes
0 answers
42 views
How to mount a subdirectory(inode ) to a specific path? Kernel development
I'm working on a directory-level snapshot feature based on a file system, where a snapshot of a directory is recorded by an inode, and I want to implement how the snapshot sharing mount should be ...
0 votes
0 answers
99 views
NFS mount(2): Operation not permitted when running GitHub Actions self-hosted runners with concurrent mounts
I'm running into an NFS mounting issue. We're running a DevOps build pipeline in GitHub Actions where we need to mount a shared file system using NFS version 4.1. We have multiple pipeline instances ...
0 votes
0 answers
42 views
Mount windows share in gitlab-runner via docker desktop on windows - permission denied
I have a gitlab-ci.yml which builds a project and should deploy it to a windows share, but the second stage where I mount a windows share does not work inside my runner. I have a windows machine with ...
0 votes
1 answer
82 views
Jenkins docker plugin is mounting the workspace to the container
When running a container in my Jenkins CI like this: image.inside('-v /build:/build:rw') { body() } the default Jenkins workspace, which in my case is /home/jenkins/workspace/kevin is being ...
0 votes
1 answer
73 views
Able to read FileInfo, but cannot read contents within the file: urlopen error [Errno 5] Input/output error
I have 2 environments, Staging & Production. Both using the exact code, but one environment can read the contents within the file, while other cannot. I can see both FileInfo using 2 codes: Python:...
1 vote
0 answers
32 views
Error with Google Maps API in React: “Cannot read properties of undefined (reading ‘lH’)”
I am developing an application in React with TypeScript where I use the Google Maps API through the @vis.gl/react-google-maps library. The Google Maps API seems to load correctly the first time I open ...
0 votes
1 answer
94 views
Does Mountpoint-s3 allow recursive directory deletion when mounting a directory bucket?
Does Mountpoint-s3 allow recursive directory deletion when mounting a directory bucket? If Yes, will deleting a directory trigger a single request to delete, or multiple requests to traverse and ...
0 votes
1 answer
780 views
How to prompt for credentials when mounting NFS server using 'fuse-nfs'
I have two Ubuntu machines, one serving as an NFS server (Machine A) and the other as an NFS client (Machine B). I have configured the NFS server on Machine A as follows: On Machine A: Installed the ...
-4 votes
1 answer
166 views
Mounting a Windows share on MacOS Sequoia
How do I mount a Windows server file share in MacOS in python? An error results from this code (MacOS Sequoia, Windows Server 2022, VSCode, python 3.12.6): from contextlib import contextmanager import ...
0 votes
2 answers
240 views
Mount File System within docker (for paperless-ngx)
I want to mount the path /data/nextcloud_data/Dokumente into my docker. docker container ls CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 78690b704594 ghcr.io/paperless-ngx/paperless-ngx:...
0 votes
1 answer
265 views
How can I stop Pycharm from indexing ALL directories?
Lately I was searching on the internet for a solution for an issue we are having in our company. We use AutoFS to mount NFS paths to our working machines (For example, home dirs), so it only mounts ...
1 vote
0 answers
624 views
How to mount NAS as network storage for Paperless-ngx under Windows with WSL and Docker?
I have a Windows 11 System which runs Paperless-ngx on Docker and WSL and a Docker Volume as storage. Additionally I use Portainer for Docker UI. So far this setup works without problems. Now I have a ...
0 votes
1 answer
70 views
Docker bind mount
I am a beginner in Docker. I have a basic node app project "node-bind-mount-demo" on the below path on my local machine. C:/Acer/Desktop/Docker_Demo/node-bind-mount-demo This project ...
0 votes
1 answer
71 views
Problem using cifs-mount in buildroot when application is auto-started from inittab
I'm building a system based on buildroot (2024-02), init (busybox) and Raspberry-pi CM4. The "home-made" application shall not give any prompt to login, so I auto-start my application from ...