Questions tagged [mount-point]

A mount point is a location (a directory) in a directory structure to which a resource (a directory structure) from another file system (like a data carrier, for example a CD-ROM) is attached (integrated).

170 questions
2
votes
1 answer

Create volume with docker volume with a custom Mountpoint

I need to create a volume with "docker volume" with a personal Mountpoint (mountpoint="/my/path/ not /var/lib/docker...) but i can't use plugin like local-persist docker volume create -d local-persist -o mountpoint=/data/images --name=images i…
Mirco
  • 212
  • 3
  • 12
2
votes
1 answer

Retrieve mount point of WPD device

I've worked with WPD API for a while now, and I seem to run in to problem after problem. Once I fix one problem, something else pops up. But hey, that's life. I've been trying to determine if a WPD device is a storage device or a phone or…
Aid Vllasaliu
  • 85
  • 2
  • 11
2
votes
1 answer

Spring batch: How to read files from mount point created in UNIX server location directly?

I am having the spring configuration to read the files from ftp location as below.
Ayyappak
  • 183
  • 2
  • 4
  • 18
2
votes
1 answer

Get partition name from drive letter and vice versa

The program I'm working on needs to access removable drives. Normally this wouldn't be a problem, because the mountpoint should stay the same (e.g.: On Ubuntu my phone's SD card gets mounted at /media/sebastian/GT-S5830/) But on Windows there are…
s3lph
  • 4,575
  • 4
  • 21
  • 38
2
votes
1 answer

Typo3: No proper connection to the tree-root for access restricted mountpoint pages

i need help at redirecting the user to the login page if he wants to access a restricted page. At first i will explain how the tree root looks like. There are multiple domains for that Typo3 instance. Every domain got its own part in the tree with…
Mumpitz
  • 51
  • 5
2
votes
1 answer

Mountpoint from a filename - portable way

Want make a script (called getmpoint) what will return the mountpoint from ANY filename. The 1st idea, like: parsing output form the df or parsing fstab is not as easy as seems, because for example: getmpoint…
clt60
  • 62,119
  • 17
  • 107
  • 194
2
votes
3 answers

Howto find the file for a loopmounted device?

Question: if I loopmount a file, like this mount /volumes/jfs.dsk /mnt/jfs -t jfs -o loop then what happens behind the scenes is losetup /dev/loop1 /volumes/jfs.dsk mount /dev/loop1 /mnt/jfs -t jfs -o loop My question now: If I have /dev/loop1,…
Stefan Steiger
  • 78,642
  • 66
  • 377
  • 442
1
vote
1 answer

Read the file from datalake in databricks -No such file directory error

I have a problem with reading the file from ADLS gen 2. I have dont the mounting properly as after executing dbutils.fs.ls('/mnt/bronze') I can see the file path. the way how I did the mounting: # dbutils.fs.mount( # source =…
Greencolor
  • 501
  • 1
  • 5
  • 16
1
vote
1 answer

Databricks: Cannot access mounted blob

I mounted a blob storage container (confirmed blob type): dbutils.fs.mount( source = "wasbs://mycontainer@myblobstorageaccount.blob.core.windows.net", mount_point = "/mnt/mymountpoint", extra_configs =…
1
vote
1 answer

Unable to write over an SSHFS mounted folder with SLURM jobs

I have the following problematic and I am not sure what is happening. I'll explain briefly. I work on a cluster with several nodes which are managed via slurm. All these nodes share the same disk memory (I think it uses NFS4). My problem is that…
jdeJuan
  • 145
  • 4
  • 13
1
vote
2 answers

shaded.databricks.org.apache.hadoop.fs.azure.AzureException: An exception while trying to list a directory after mounting

I am getting below exception, shaded.databricks.org.apache.hadoop.fs.azure.AzureException: java.util.NoSuchElementException: An error occurred while enumerating the result, check the original exception for details First I mounted the directory in…
1
vote
1 answer

Databricks Mount Open/Public Azure Blob Store

Using Microsoft's Open Datasets (here), I'd like to create (external) tables in my Databricks env available for consumption in Databricks SQL env and external (BI tools) to this parquet source. Bit confused on the right approach. Here's what I've…
1
vote
1 answer

Is it possible to atomically change mount device in Linux?

Is it possible to change what device is mounted to a mount point atomically, so at no moment of time mount point can be observed empty? Here is what I am trying to do: $ mkdir /point $ mkdir /device1 /device2 $ echo 1 > /device1/text $ echo 2 >…
KAction
  • 587
  • 2
  • 10
1
vote
1 answer

Why does docker/overlay2 show up as a separate mountpoint?

I am running docker on a RHEL7.9 machine we hope to host webservices and a few other applications. $ docker info Client: Context: default Debug Mode: false Plugins: app: Docker App (Docker Inc., v0.9.1-beta3) buildx: Build with BuildKit…
JLuxton
  • 421
  • 1
  • 5
  • 17
1
vote
1 answer

Does containers in a Kubernetes Pod run in different "mount" namespaces?

Does containers in a Kubernetes Pod run in different "mount" namespaces? As per what i read in few online resources , when a container is launched , each container points to an isolated file system and the only thing that can be used to share file…
1 2
3
11 12