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).
Questions tagged [mount-point]
170 questions
1
vote
1 answer
How to create Mountpoints for Logical Volumes
I have a script that I want to help me create a Logical Volume Manager with partitions outlined below:
# Partitioning scheme for 120 GB HD
# Partition clearing information
clearpart --all --initlabel
# Clear the Master Boot Record
zerombr
# Disk…

user2019182
- 295
- 5
- 19
1
vote
0 answers
Determine system path for HID devices
I am searching for a way to dynamically find the system path for HID (USB) devices.
On my Ubuntu machine it's /dev/usb/hiddevX, but I suppose there are distros where hiddevices get mounted elsewhere.
To be more specific: I need this in a C program…

Alex
- 12,205
- 7
- 42
- 52
1
vote
1 answer
Mount Point in PowerShell
I'm trying to create a mount point using Powershell. it's done locally, and here is the code & issue i'm having.
$choice = "t"
New-Item -ItemType directory -Path "E:\Data\Riptide\Ariis\Ris\Docs\interPrimary1\"
$orgdrive =…

user1442336
- 55
- 1
- 2
- 9
0
votes
1 answer
Create a mountable image with the newfs file system
I want to create a mountable image with the newfs file system which can be mounted with newfs file system. How can I do that?
I have tried to create an image with the command
dd if=localfiles.tar.gz of=/root/upload/test.img
but I could not creat a…

Bhavik Ambani
- 6,557
- 14
- 55
- 86
0
votes
1 answer
Running Python Program via sshfs-mounted Share
I have a share (on Machine-A) mounted via sshfs on Machine-B. From Machine-C, I have this share mounted also via sshfs (double sshfs) like so:
On Machine-C: /mnt/Machine-B/target_share
On Machine-B: /mnt/Machine-A/target_share
On Machine-A:…

nicorellius
- 3,715
- 4
- 48
- 79
0
votes
0 answers
libguestfs: error: mount_local: unknown option 1881168272
I am trying to write a sample program using guestfs api to mount a disk image file lets say disk.img in my linux machine (RHEL 8x). I want to mount the filesytems in guestfs kernal and then mount the guestfs filesystem to my local machine mount…
0
votes
0 answers
How to find true source of a mount?
I want to understand how can I figure out the actual source of a mount from /proc/self/mountinfo file?
Here is an example of a mountinfo file:
19 60 0:5 / /dev rw,nosuid shared:2 - devtmpfs devtmpfs…

codego123
- 171
- 2
- 12
0
votes
2 answers
Importing an old Plone 3.3 site as second site in my Plone 4.1
I'm running a Plone 4.1 site, and since we have a second site that has been down for a while, and which was built over Plone 3.3, we'd like to import that site as well into our Plone 4.1.
I have already created a separate mount point, but copying…

Silvio Arcangeli
- 43
- 1
- 5
0
votes
0 answers
calling kern_path during mount process
I'm trying to get devt of mountpoint (path*) in one of the LSM hooks.
Assuming I have the following mount:
/dev/mmcblk0p5 is mounted to /mnt/photos
I would expect that calling
kern_path("/mnt/photos", ...)
will return a struct path with…

Dekel N
- 1
- 1
0
votes
1 answer
Get host mount directory from within Docker container
I am running a Python application in a Docker container. The application downloads files to container_dir in the container. I mount that container_dir to a host_dir on the host at runtime, e.g.
docker run ... --mount…

Yves Moisan
- 21
- 3
0
votes
0 answers
What happen if I run `!rm -rf /content/drive` in drive mounted google colab
Suppose I mount drive in this folder:
from google.colab import drive
drive.mount('/content/drive', force_remount=True)
Then I run
!rm -rf /content/drive
Will all my data in google drive remove permanently? Since it contains MyDrive folder that is…

Muhammad Ikhwan Perwira
- 548
- 3
- 16
0
votes
1 answer
Icecast2 make point to connect Rivendell
I have server with option SSH to run own proces. On this server I have preinstaled command icecast and ices.
I want to create in IceCast mount point to connect to them by Rivendell. But after read many pages w examples I haven't idea why Icecast…

Peter
- 499
- 10
- 30
0
votes
1 answer
Mount Azure File Share on Databricks Cluster
I'm trying to mount an Azure File Share on a Databricks cluster and get a 'permission denied' error. mount: /mnt/test: permission denied. Adding the --verbose flag doesn't provide any additional information. Can someone please help troubleshoot?
The…

xuxu
- 418
- 5
- 15
0
votes
0 answers
Getting a mount error when trying to mount device at another mount point after cryptsetup opened LUKS device
I am using Ubuntu 22.04 and would like to mount an opened LUKS device (USB pen drive) in /media/user_name/... for it to show up in the Ubuntu file explorer.
When inserting the drive a dialog immediately opens asking for a password to unlock the…

Jokko
- 1
0
votes
1 answer
Drone Pipeline : Drone Cache mount path for Maven Repository not able to resolve
I'm new to Drone pipeline and is interested to use it in my current project for CICD.
My project tech stack is as follows:
Java
Spring Boot
Maven
I have created a sample drone pipeline, but not able to cache the maven dependencies which is…

Anpks
- 11
- 3